-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (64 loc) · 2.09 KB
/
pyproject.toml
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
68
69
70
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
dynamic = ["version"]
name = "openenergyid"
authors = [
{ name = "Jan Pecinovsky", email = "[email protected]" },
{ name = "Max Helskens", email = "[email protected]" },
]
maintainers = [{ name = "Jan Pecinovsky", email = "[email protected]" }]
description = "Open Source Python library for energy analytics and simulations"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["energy", "analytics", "simulation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://energyid.eu"
Repository = "https://github.com/EnergieID/OpenEnergyID"
"Bugs Tracker" = "https://github.com/EnergieID/OpenEnergyID/issues"
[tool.hatch.version]
path = "openenergyid/__init__.py"
[tool.ruff]
line-length = 100
[tool.poetry]
name = "openenergyid"
version = "0.1.20" # You'll need to set this manually or use a different method for dynamic versioning
description = "Open Source Python library for energy analytics and simulations"
authors = [
"Jan Pecinovsky <[email protected]>",
"Max Helskens <[email protected]>",
"Oscar Swyns <[email protected]>",
]
dependencies.python = "^3.10"
dependencies.polars = "^1.9.0"
dependencies.pandera = "^0.20.3"
dependencies.numpy = "^2.0.0"
dependencies.patsy = "^0.5.6"
dependencies.statsmodels = "^0.14.2"
dependencies.pydantic = "^2.8.2"
dependencies.pandas = "^2.2.2"
[tool.poetry.group.dev.dependencies]
altair = "^5.4.1"
matplotlib = "^3.9.1"
jupyter = "^1.0.0"
ipykernel = "^6.29.5"
seaborn = "^0.13.2"
pytest = "^8.3.2"
entsoe-py = "^0.6.8"
energyid = "^0.0.17"
snakeviz = "^2.2.0"
plotly = "^5.24.1"