-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
58 lines (49 loc) · 1.08 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
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"
[project]
name = "topotherm"
version = "0.2.0"
description = "A package to design district heating networks"
readme = "README.md"
authors = [
{ name = "Jerry Lambert", email = "[email protected]"},
{ name = "Amedeo Ceruti", email = "[email protected]"}
]
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: District Heating",
]
keywords = [
"district heating",
"optimization",
"Linear Programming",
"Mixed Integer Linear Programming"
]
license = {file = "LICENSE"}
requires-python = ">=3.9"
dependencies = [
"numpy",
"pandas",
"scipy",
"networkx",
"matplotlib",
"pyomo > 6.0",
"pyarrow >= 14.0.1",
"Pillow >= 10.2.0",
"pyyaml",
"pydantic",
]
[tool.setuptools]
packages = ["topotherm"]
[project.optional-dependencies]
dev = [
"pytest",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"sphinx-autodoc",
"sphinx-viewcode"
]