-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.18 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
[build-system]
requires = [
"scikit_build_core>=0.8",
"pybind11>=2.10.0",
"wheel",
]
build-backend = "scikit_build_core.build"
[project]
name = "pybtls"
version = "0.3.7"
description = "A package for short-to-mid span bridge traffic loading simulation"
readme = "README.rst"
requires-python = ">=3.9"
authors = [
{ name="Colin Caprani", email="[email protected]" },
{ name="Ziyi Zhou", email="[email protected]" },
{ name="Akbar Rizqiansyah", email="[email protected]" }
]
license = { text = "GNU GPL v3" }
keywords = ["bridge", "traffic", "simulation"]
dependencies = [
"matplotlib",
"numpy",
"pandas",
"scipy",
"seaborn"
]
[project.urls]
Documentation = "https://github.com/ccaprani/btls"
Source = "https://github.com/ccaprani/btls"
Tracker = "https://github.com/ccaprani/btls/issues"
[project.optional-dependencies]
test = ["pytest>=6.0", "pycba>=0.5"]
[tool.scikit-build]
wheel.packages = ["py/pybtls"]
sdist.include = ["py/pybtls/data/*/*/*.csv"]
sdist.exclude = []
[tool.scikit-build.cmake.define]
Binary = "OFF"
PythonLib = "ON"
[tool.cibuildwheel]
test-command = "pytest {project}/tests/"
# test-skip = "*universal2:arm64"