-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (46 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
55 lines (46 loc) · 1.02 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
[build-system]
requires = [
"setuptools>=61.0",
"setuptools-git-versioning"
]
build-backend = "setuptools.build_meta"
[project]
name = "solar_consumer"
dynamic = ["version"]
dependencies = [
"pandas",
"sqlalchemy",
"nowcasting_datamodel==1.5.56",
"pvsite-datamodel==1.2.0",
"testcontainers",
"pyproj",
"tqdm",
"loguru==0.7.3",
"pvlive-api>=1.5.1",
"dp-sdk",
"betterproto==2.0.0b7",
"grpclib==0.4.8",
"pytest-asyncio>=1.2.0",
"requests-mock>=1.12.1",
]
requires-python = ">=3.12.0, <3.13"
[dependency-groups]
dev = [
"pytest",
"black",
"ruff",
"pandas"
]
[tool.setuptools-git-versioning]
enabled = true
dirty_template = "{tag}"
[tool.uv.sources]
dp-sdk = { url = "https://github.com/openclimatefix/data-platform/releases/download/v0.24.5/dp_sdk-0.24.5-py3-none-any.whl" }
[tool.ruff]
line-length = 100
indent-width = 4
exclude = ["__init__.py"]
[tool.pytest.ini_options]
markers = [
"integration: marks integration tests that call external services",
]