-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
77 lines (69 loc) · 1.86 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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "GOSTnets"
dynamic = ["version"]
description = "Networkx wrapper to simplify network analysis using geospatial data"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [{ name = "World Bank", email = "[email protected]" }]
maintainers = [
{ name = "Benjamin P. Stewart", email = "[email protected]" },
{ name = "Andres Chamorro", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"geojson",
"geopandas",
"networkx",
"numpy",
"osmnx>=1.0.1",
"pandas>=0.23.5",
"pyproj>=2.4.2",
"rasterio",
"rtree>=0.9.3",
"scipy",
"shapely",
"boltons",
"geopy"
]
[project.optional-dependencies]
dev = ["pre-commit", "pytest", "pytest-cov", "tomli", "coverage[toml]", "GOStnets[docs,osm,opt]", "pooch"]
docs = [
"docutils==0.17.1",
"jupyter-book>=1,<2",
"sphinxcontrib-apidoc>=0.4.0,<1",
"jupyter-cache>=0.6.0",
"nbconvert",
]
osm = ["gdal"]
opt = ["pulp"]
[project.urls]
"Homepage" = "https://github.com/worldbank/GOSTnets"
"Bug Reports" = "https://github.com/worldbank/GOSTnets/issues"
"Source" = "https://github.com/worldbank/GOSTnets"
[tool.setuptools_scm]
write_to = "src/GOSTnets/_version.py"
[tool.codespell]
skip = 'docs/_build,docs/references.bib,__pycache__,*.png,*.gz,*.whl'
ignore-regex = '^\s*"image\/png":\s.*'
ignore-words-list = "gost,nd,ans,chck,lenth"
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.ruff]
exclude = ["__init__.py"]
[tool.coverage.run]
omit = [
"tests/*",
"docs/*",
"Tutorials/*",
"src/GOSTnets/_version.py",
"src/GOSTnets/__init__.py",
]