-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
72 lines (65 loc) · 1.69 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
[project]
name = "nismod-snail"
version = "0.5.3"
license = { file = "LICENSE" }
description = "The spatial networks impact assessment library"
readme = "README.md"
authors = [
{ name = "Tom Russell", email = "[email protected]" },
{ name = "Thibault Lestang" },
{ name = "Raghav Pant" },
{ name = "Lena Fuldauer" },
]
maintainers = [{ name = "Tom Russell", email = "[email protected]" }]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Utilities"
]
keywords = []
requires-python = ">=3.8"
dependencies = [
"geopandas",
"matplotlib",
"numpy",
"openpyxl",
"pandera",
"pyarrow",
"pyogrio",
"igraph",
"rasterio",
"shapely",
"scipy"
]
[project.optional-dependencies]
dev = ["affine", "black", "hilbertcurve", "nbstripout", "pytest-cov", "pytest"]
docs = ["sphinx", "nbsphinx", "sphinx_gallery", "numpydoc"]
tutorials = [
"contextily",
"irv_autopkg_client",
"jupyter",
"networkx",
"seaborn",
"snkit",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/nismod/snail"
Documentation = "https://nismod.github.io/snail/"
Repository = "https://github.com/nismod/snail.git"
[project.scripts]
snail = "snail.cli:snail"
[build-system]
requires = ["scikit-build-core>=0.3.3", "pybind11"]
build-backend = "scikit_build_core.build"
[tool.scikit-build]
wheel.expand-macos-universal-tags = true
wheel.packages = ["src/snail"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.black]
line-length = 79