forked from openego/ding0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (66 loc) · 1.67 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 = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ding0"
version = "v0.2.1"
dependencies = [
"networkx >= 2.5.1",
"geopy >= 2.1.0",
"pandas >= 1.2.4",
"pyproj >= 3.0.1",
"sqlalchemy >= 1.3.24",
"geoalchemy2 >= 0.6.3",
"matplotlib >= 3.4.2",
"egoio >= 0.4.8",
"shapely >= 1.8, < 2.0.0",
"pypsa >= 0.17.1",
"seaborn >= 0.11.1",
"oedialect >= 0.0.10",
"geopandas >= 0.9.0",
"osmnx>=1.1.1",
"ding0>=0.2.1",
"numpy>=1.21.2",
"pyyaml>=6.0",
"saio>=0.2.1",
"scipy>=1.7.1",
"contextily>=1.2.0",
"argparse>=1.4.0",
"scikit-learn>=0.24.2",
"pymetis",
"pyshp",
]
requires-python = ">=3.10"
authors = [
{name = "nesnoj", email = "jonathan.amme@rl-institut.de"},
{name = "gplssm"},
]
maintainers = [
{name = "nesnoj", email = "jonathan.amme@rl-institut.de"},
]
description = "DIstribution Network GeneratOr"
readme = "README.md"
license = {text= "AGPL-3.0"}
keywords = ["grid"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
]
[tool.setuptools.package-data]
ding0 = [
"config/*.cfg",
"data/*.csv",
"grid/mv_grid/tests/testcases/*.vrp",
"grid/mv_grid/tests/testcases/Augerat/*.vrp",
"grid/mv_grid/tests/testcases/Augerat-tcc/*.vrp",
"grid/mv_grid/tests/testcases/Takes-tcc/*.vrp",
"grid/mv_grid/tests/testcases/Vigo/*.vrp",
]
[project.urls]
Homepage = "https://github.com/openego/ding0"
Repository = "https://github.com/openego/ding0.git"
Documentation = "https://dingo.readthedocs.io"
"Bug Tracker" = "https://github.com/openego/ding0/issues"