-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpyproject.toml
55 lines (45 loc) · 1.32 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
[project.urls]
"Source Code" = "https://github.com/jiawlu/OSM2GMNS"
"Bug Tracker" = "https://github.com/jiawlu/OSM2GMNS/issues"
[build-system]
requires = ["scikit-build-core>=0.9.0"]
build-backend = "scikit_build_core.build"
[project]
name = "osm2gmns"
version = "1.0.0b5"
description = "convert map data from OpenStreetMap to network files in GMNS format"
authors = [{ name = "Jiawei Lu", email = "[email protected]" }, { name = "Xuesong (Simon) Zhou", email = "[email protected]" }]
readme = "README.rst"
requires-python = ">=3.8"
dependencies = []
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[tool.scikit-build]
wheel.packages = ["osm2gmns"]
wheel.install-dir = "osm2gmns"
wheel.expand-macos-universal-tags = true
cmake.version = ">=3.25"
cmake.args = ["-DBUILD_OSM2GMNS_EXE=OFF"]
cmake.build-type = "Release"
cmake.verbose = true
sdist.include = [
"docs",
"python",
"src"
]
sdist.exclude = [
".github",
".gitattributes",
".gitignore",
"build"
]
[tool.cibuildwheel]
build = "*"
skip = "cp3{6,7}-*"