-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
66 lines (59 loc) · 1.65 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
[build-system]
requires = ["hatchling>=1.21.0", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"
[project]
name = "GOSTurban"
dynamic = ["version"]
description = "Multiple functions, tools, and tutorials for calculating urbanization based on gridded population data"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
authors = [{ name = "World Bank", email = "github@worldbank.org" }]
maintainers = [
{ name = "Benjamin P. Stewart", email = "bstewart@worldbankgroup.org" },
{ name = "Andres Chamorro", email = "achamorroelizond@worldbank.org" },
]
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"rasterio",
"geopandas",
"pandas",
"numpy",
"scipy",
"shapely",
"geopy",
"pyproj",
"elevation",
"geojson",
"GOSTRocks",
"richdem"
]
[project.optional-dependencies]
dev = ["pytest", "pytest-cov", "GOSTurban[docs]"]
docs = [
"docutils==0.17.1",
"jupyter-book>=1,<2",
"sphinxcontrib-apidoc>=0.4.0,<1",
"jupyter-cache>=0.6.0",
"nbconvert",
"nbstripout"
]
[project.urls]
"Homepage" = "https://github.com/worldbank/GOSTurban"
"Bug Reports" = "https://github.com/worldbank/GOSTurban/issues"
"Source" = "https://github.com/worldbank/GOSTurban"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/GOSTurban/_version.py"
[tool.codespell]
skip = 'docs/_build,docs/references.bib,__pycache__,*.png,*.gz,*.whl'
ignore-regex = '^\s*"image\/png":\s.*'
ignore-words-list = "gost,"
[tool.ruff.lint.pydocstyle]
convention = "numpy"