-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.06 KB
/
pyproject.toml
File metadata and controls
102 lines (92 loc) · 2.06 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools", "wheel", "Cython", 'numpy']
build-backend = "setuptools.build_meta"
[project]
name = "where2share"
version = "0.1"
authors = [
{ name = "Felix Jung", email = "felix.jung@tu-dresden.de" },
{ name = "Philip Marszal", email = "philip.marszal@tu-dresden.de" },
]
description = """
Where2Share project code"""
keywords = ["research", "physics", "science", "ridepooling", "transport", "mobility"]
readme = "README.rst"
requires-python=">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Operating System :: POSIX :: Linux",
]
dependencies = [
"numpy",
"pandas",
"geopandas",
"shapely",
"matplotlib",
"SQLAlchemy",
"tqdm",
"osmnx",
"networkx",
"scipy",
"psycopg2-binary",
"python-dotenv",
"dotmap",
"GeoAlchemy2",
"fxutil",
"contextily",
"pygeos >= 0.10",
"pyproj",
]
# "graph-tool >= 2.59" (not installable via pip)
[project.optional-dependencies]
dev = [
"black[jupyter] == 24.3.0",
"pytest",
"check-manifest",
"pre-commit",
]
doc = [
"recommonmark",
"sphinx",
"sphinx-rtd-theme",
"sphinx-toggleprompt",
"sphinx-autodoc-typehints",
"myst-nb",
]
[project.urls]
repository = "https://github.com/PhysicsOfMobility/where2share"
#[project.scripts]
#pf = "paperfridge_client.cli:app"
[tool.setuptools]
zip-safe = true
package-dir = { "" = "src"}
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.toml"]
[tool.black]
line-length = 88
target-version = ['py312']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| googletest
)/
'''
# NOTE: you have to use single-quoted strings in TOML for regular expressions.
# It's the equivalent of r-strings in Python. Multiline strings are treated as
# verbose regular expressions by Black. Use [ ] to denote a significant space
# character.