-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (82 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
95 lines (82 loc) · 1.82 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = [
"setuptools>=42",
"wheel",
"pybind11>=2.13",
"numpy",
"pytest"
]
build-backend = "setuptools.build_meta"
[project]
name = "neworder"
version = "1.5.1"
authors = [
{ name="Andrew Smith", email="andrew@friarswood.net" },
]
license = "MIT"
license-files = ["LICENCE.md"]
description = "A dynamic microsimulation framework"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
dependencies = [
"pandas>=2.3.3",
"pandas-stubs",
"scipy>=1.9.3",
"matplotlib>=3.6.2",
]
[dependency-groups]
dev = [
"pybind11>=2.10.3",
"pytest>=9.0.3",
"mypy>=1.5.0",
"mypy-extensions>=1.0.0",
"ruff",
"click<8.3", # bug prevents mkdocs auto-refreshing
"mkdocs>=1.6.1",
"mkdocs-macros-plugin>=1.3.7",
"mkdocs-material>=9.6.14",
"mkdocs-material-extensions>=1.3.1",
"mkdocs-video>=1.5.0",
"requests>=2.32.4",
"types-requests",
"pybind11-stubgen>=2.5.5",
"types-python-dateutil>=2.9.0.20260124",
"pre-commit>=4.5.1",
]
[project.optional-dependencies]
geospatial = [
"pyogrio>=0.12.0",
"networkx>3.0",
"osmnx>=2.0.0",
"geopandas>=0.12.2",
"shapely>=2.0.0"
]
parallel = [
"mpi4py>=3.0.3"
]
[project.urls]
"Homepage" = "https://neworder.readthedocs.io/"
"Bug Tracker" = "https://github.com/virgesmith/neworder/issues"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"test"
]
filterwarnings = [
"ignore:neworder installed in serial mode:RuntimeWarning",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["B", "C", "E", "F", "I"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = ["F401", "F403"]
[tool.mypy]
disallow_untyped_defs = "true"