-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (69 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (69 loc) · 1.81 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
[build-system]
requires = [
"scikit-build-core>=0.9",
"nanobind",
]
build-backend = "scikit_build_core.build"
[project]
name = "uxsim"
description = "UXsim: traffic flow simulator"
readme = "README.md"
authors = [{name = "Toru Seo", email = "seo.t.aa@m.titech.ac.jp"}]
license = "MIT"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: C++",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"numpy>=1.21.5",
"matplotlib>=3.5.2",
"pillow>=9.2.0",
"tqdm>=4.64.1",
"scipy>=1.9.1",
"pandas>=1.4.4",
"PyQt5>=5.15.7",
"dill>=0.3.9",
"networkx>=3.2.1"
]
dynamic = ["version"]
[project.optional-dependencies]
advanced = [
"neatnet>=0.1.1",
"osmnx>=2.0.0",
"geopandas>=1.0.0",
"shapely>=2.1.0"
]
dev = [
"pytest>=8.4.0",
"pytest-xdist>=3.8.0",
"pytest-rerunfailures>=16.0",
"pytest-cov",
"setuptools",
"jupyter",
"nbformat"
]
[project.urls]
Homepage = "https://github.com/toruseo/UXsim"
Documentation = "https://toruseo.jp/UXsim/docs"
Issues = "https://github.com/toruseo/UXsim/issues"
[tool.scikit-build]
wheel.packages = ["uxsim"]
cmake.version = ">=3.15"
build.targets = ["uxsim_cpp"]
build.verbose = true
install.strip = false
install.components = ["python"]
sdist.include = ["uxsim/trafficpp/*.cpp", "uxsim/trafficpp/*.h"]
wheel.license-files = ["LICENSE"]
[tool.scikit-build.metadata.version]
provider = "scikit_build_core.metadata.regex"
input = "uxsim/__init__.py"