-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
45 lines (41 loc) · 1.01 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
[build-system]
requires = ["flit_core >= 3.4"]
build-backend = "flit_core.buildapi"
[project]
name = "heatpumps"
description = "Collection of TESPy heat pump models and additional Streamlit dashboard."
version = "1.3.0"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Jonas Freißmann", email = "jonas.freissmann@web.de" },
{ name = "Malte Fritz", email = "malte.fritz@web.de" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
]
dependencies = [
"coolprop>=6.4.1",
"darkdetect>=0.8.0",
"fluprodia==3.3",
"matplotlib>=3.6.3",
"numpy>=1.24.0",
"pandas>=1.5.3",
"plotly>=5.20.0",
"scikit-learn>=1.2.1",
"scipy>=1.10.0",
"streamlit>=1.32.0",
"tespy>=0.7.5"
]
[project.scripts]
heatpumps-dashboard = "heatpumps.run_dashboard:main"
[project.urls]
Homepage = "https://github.com/jfreissmann/heatpumps"
[tool.flit.sdist]
include = [
'static/*',
'static/img/*',
'static/img/topologies/*',
'models/input/*'
]