-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (57 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
67 lines (57 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[project]
name = "ecobalyse"
version = "0.1.0"
description = "Accélerer la mise en place de l'affichage environnemental"
readme = "README.md"
requires-python = "==3.12.*"
dependencies = [
"litestar[jwt,sqlalchemy,standard]>=2.20.0",
"aiosqlite>=0.21.0",
"advanced-alchemy>=1.4.4",
"msgspec>=0.19.0",
"check-jsonschema>=0.32.1",
"pytest-databases[postgres]>=0.12.0",
"psycopg[binary,pool]>=3.2.6",
"asyncpg>=0.30.0",
"structlog>=25.2.0",
"orjson>=3.10.16",
"aiosmtplib>=4.0.0",
"emails>=0.6",
"python-stdnum>=2.1",
"pygithub>=2.6.1",
"typer>=0.16.0",
"pytest-mock>=3.14.1",
"asyncstdlib>=3.13.1",
"sentry-sdk[litestar]>=2.41",
"pwdlib[argon2]>=0.2.1",
]
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling", "setuptools"]
[tool.hatch.metadata]
# direct dependency references, e.g `pip @ git+https://github.com/pypa/pip.git@master`
allow-direct-references = true
[tool.hatch.build]
dev-mode-dirs = ["./packages/python/ecobalyse", "./backend/src", "."]
ignore-vcs = true
sources = ["src"]
[tool.hatch.build.targets.sdist]
exclude = [".github", "docs"]
include = ["src/*", "tests/*", "public/*", "tools/*", "resources", "LICENSE"]
skip-excluded-dirs = false
[tool.hatch.build.targets.wheel]
packages = ["app"]
[project.scripts]
backend = "app.__main__:run_cli"
[dependency-groups]
dev = [
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"ruff>=0.8.1",
]
[lint]
extend-select = ["I"]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.ruff]
target-version = "py312"