-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (51 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
64 lines (51 loc) · 1.18 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
[build-system]
requires = ["setuptools>=67", "wheel", "setuptools-git-versioning>=2.0,<3"]
build-backend = "setuptools.build_meta"
[project]
name = "forecast_inference"
description = "App for running forecast inference for pv sites"
readme = "README.md"
requires-python = ">=3.11,<3.12"
license = {text = "MIT License"}
authors = [
{name = "Open Climate Fix", email = "info@openclimatefix.org"},
]
dependencies = [
"pandas==2.2.3",
"s3fs==2022.11.0",
"python-dotenv==0.21.1",
"sqlalchemy",
"pv-site-prediction==0.1.20",
"pvsite-datamodel==1.2.0",
"sentry-sdk==2.1.1",
"pytest",
"freezegun",
"testcontainers",
"ruff",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"isort",
"flake8",
"pydocstyle",
"pandas-stubs",
"types-pyyaml",
"mypy",
"jupyter",
"altair",
]
[project.urls]
repository = "https://github.com/openclimatefix/pv-site-production"
[tool.setuptools-git-versioning]
enabled = true
template = "{tag}"
dirty_template = "{tag}"
[tool.setuptools.packages.find]
exclude = ["notebook*"]
[tool.ruff]
exclude = ["notebooks"]
# --- TESTING CONFIGURATION --- #
[tool.pytest.ini_options]
testpaths = ["tests"]