generated from worldbank/template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
executable file
·46 lines (42 loc) · 1.31 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
[build-system]
requires = ["setuptools>=64.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "GOSTNetsRaster"
dynamic = ["version"]
description = 'Generate travel time rasters from friction surfaces'
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]" }
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
'rasterio',
'geopandas',
'pandas',
'numpy',
'osmnx',
'GOSTNets',
'scikit-image',
'pyproj',
'GOSTRocks',
'scipy',
'pandana'
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "GOSTNetsRaster[docs]"]
docs = ["docutils==0.17.1", "jupyter-book>=1,<2"]
[project.urls]
"Homepage" = "https://github.com/worldbank/GOSTNets_Raster"
"Bug Reports" = "https://github.com/worldbank/GOSTNets_Raster/issues"
"Source" = "https://github.com/worldbank/GOSTNets_Raster"
[tool.setuptools_scm]
write_to = "src/GOSTnetsraster/_version.py"