-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.0", "cibuildwheel", "auditwheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-moss"
version = "1.2.5"
description = "MObility Simulation System"
authors = [
{ name = "Jun Zhang", email = "[email protected]" },
{ name = "Wenxuan Ao", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
dependencies = [
"shapely>=2",
"protobuf>=3.20,<5",
"numpy>=1.20,<2",
"pycityproto>=2,<3",
"numba>=0.60",
"tqdm",
"psycopg[binary,pool]>=3.0,<4",
"pymongo",
"pyproj",
"stringcase",
"ray[default]>=2.0,<3",
]
[project.urls]
Homepage = "https://moss.fiblab.net"
Repository = "https://github.com/tsinghua-fib-lab/moss.git"
Issues = "https://github.com/tsinghua-fib-lab/moss/issues"
[tool.setuptools.packages.find]
where = [
"python/src",
] # list of folders that contain the packages (["."] by default)
[tool.cibuildwheel]
build = "cp3*manylinux_x86_64"
skip = ["cp36-*", "cp37-*", "cp38-*"]
[tool.cibuildwheel.linux]
before-all = "./python/before-all-manylinux.sh"
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"