-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (72 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
78 lines (72 loc) · 1.99 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
[project]
name = "bambam"
version = "0.1.0"
description = "The Behavior and Advanced Mobility Big Access Model"
readme = "README.md"
requires-python = ">=3.10,<3.14"
authors = [{ name = "National Laboratory of the Rockies" }]
license = { text = "BSD 3-Clause License Copyright (c) 2025, Alliance for Energy Innovation, LLC" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
]
keywords = ["access modeling"]
dependencies = [
"nrel-routee-compass>=0.15.2",
"tomlkit>=0.11.0,<1.0"
]
[project.optional-dependencies]
dev = [
"pytest>=8.0,<9.0",
"maturin>=1.0,<2.0",
# "jupyter-book>=1.0,<2.0",
# "ruff>=0.1.0,<1.0",
# "sphinx-book-theme>=1.0.0,<2.0",
"mypy>=1.0.0,<2.0",
# "jupyterlab>=4.0.0,<5.0",
# "boxsdk>=3.0.0,<4.0",
# "types-requests>=2.28.0,<3.0",
]
osm = [
"osmnx>=2.0.5,<3.0",
"rio-vrt>=0.3.1,<1.0",
"mapclassify>=2.8.1,<3.0",
"requests>=2.28.0,<3.0",
"geopandas>=1.1.1,<2.0",
"shapely>=2.0.0,<3.0",
"networkx>=3.0,<4.0",
"folium>=0.14.0,<1.0",
"pandas>=2.0.0,<3.0",
"rasterio>=1.3.0,<2.0",
"matplotlib>=3.7.0,<4.0",
"numpy>=1.26,<3.0",
"seaborn>=0.12.0,<1.0",
]
all = ["bambam[osm]", "bambam[dev]"]
[project.urls]
Homepage = "https://github.com/NatLabRockies/bambam"
Documentation = "https://natlabrockies.github.io/bambam"
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]
module-name = "nlr.bambam.bambam_py_api"
manifest-path = "rust/bambam-py/Cargo.toml"
# include = [
# "LICENSE.md",
# "README.md",
# ]
[tool.mypy]
mypy_path = "python"
ignore_missing_imports = true
namespace_packages = true
explicit_package_bases = true
strict = true
disallow_untyped_calls = false
exclude = ["docs", "build/", "dist/"]