-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
78 lines (67 loc) · 1.46 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = [
"setuptools>=42",
"wheel",
"pybind11>=2.6.0",
"numpy",
"pytest"
]
build-backend = "setuptools.build_meta"
[project]
name = "neworder"
version = "1.4.2"
authors = [
{ name="Andrew Smith", email="[email protected]" },
]
license = {file = "LICENCE.md"}
description = "A dynamic microsimulation framework"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pandas>=1.5.0",
"pandas-stubs",
"scipy>=1.9.3",
"matplotlib>=3.6.2"
]
[project.optional-dependencies]
geospatial = [
"networkx>3.0",
"osmnx>=1.3.0",
"geopandas>=0.12.2",
"shapely>=2.0.0"
]
parallel = [
"mpi4py>=3.0.3"
]
dev = [
"pybind11>=2.10.3",
"pytest>=7.1.3",
"mypy>=1.5.0",
"mypy-extensions>=1.0.0",
"ruff",
"mkdocs>=1.4.2",
"mkdocs-macros-plugin>=0.7.0",
"mkdocs-material>=9.0.2",
"mkdocs-material-extensions>=1.1.1",
"mkdocs-video>=1.3.0"
]
[project.urls]
"Homepage" = "https://neworder.readthedocs.io/"
"Bug Tracker" = "https://github.com/virgesmith/neworder/issues"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"test"
]
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401", "F403"]