-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
76 lines (69 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
71
72
73
74
75
76
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=62.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "emhass"
version = "0.12.2"
description = "An Energy Management System for Home Assistant"
readme = "README.md"
requires-python = ">=3.10, <3.12"
authors = [{ name = "David HERNANDEZ", email = "[email protected]" }]
license = { text = "MIT" }
keywords = ["energy", "management", "optimization", "hass"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
dependencies = [
"numpy==1.26.4",
"scipy==1.12.0",
"pandas<=2.0.3",
"pvlib>=0.10.2",
"protobuf>=3.0.0",
"pytz>=2021.1",
"requests>=2.25.1",
"beautifulsoup4>=4.9.3",
"h5py==3.12.1",
"pulp>=2.4",
"pyyaml>=5.4.1",
"tables<=3.9.1",
"skforecast==0.14.0",
"flask>=2.0.3",
"waitress>=2.1.1",
"plotly>=5.6.0",
]
[project.optional-dependencies]
docs = ["sphinx", "sphinx-rtd-theme", "myst-parser"]
test = ["requests_mock", "pytest", "coverage", "snakeviz", "ruff"]
[tool.setuptools.packages]
find = { where = ["src"] }
[tool.setuptools.package-data]
emhass = [
"templates/index.html",
"templates/template.html",
"templates/configuration.html",
"static/advanced.html",
"static/basic.html",
"static/script.js",
"static/configuration_script.js",
"static/style.css",
"static/configuration_list.html",
"static/img/emhass_icon.png",
"static/img/emhass_logo_short.svg",
"static/img/feather-sprite.svg",
"static/data/param_definitions.json",
"data/cec_modules.pbz2",
"data/cec_inverters.pbz2",
"data/associations.csv",
"data/config_defaults.json",
]
[project.scripts]
emhass = "emhass.command_line:main"
[project.urls]
Homepage = "https://github.com/davidusb-geek/emhass"