forked from EnergieID/OpenEnergyID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.66 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
[tool.poetry]
name = "openenergyid"
version = "0.1.2" # 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]>",
]
dependencies.python = "^3.10"
dependencies.matplotlib = "^3.9.1"
dependencies.energyid = "^0.0.17"
dependencies.patsy = "^0.5.6"
dependencies.pytz = "^2024.1"
dependencies.numpy = "^2.0.0"
dependencies.pandas = "^2.2.2"
dependencies.statsmodels = "^0.14.2"
dependencies.pydantic = "^2.7.4"
maintainers = ["Jan Pecinovsky <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://energyid.eu"
repository = "https://github.com/EnergieID/OpenEnergyID"
documentation = "https://github.com/EnergieID/OpenEnergyID"
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",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/EnergieID/OpenEnergyID/issues"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
ipykernel = "^6.29.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100