-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
87 lines (74 loc) · 2.46 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
78
79
80
81
82
83
84
85
86
87
[tool.poetry]
name = "nigeria-geodata"
version = "0.0.0"
description = "Fast and efficient access to geospatial data for Nigeria. Ideal for developers and analysts working with Nigerian geospatial information."
license = "LICENSE"
authors = ["Emmanuel Jolaiya <[email protected]>"]
readme = "README.md"
keywords = ["Nigeria", "geodata", "GRID3", "geospatial"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
[tool.poetry.urls]
"Homepage" = "https://jeafreezy.github.io/nigeria_geodata/latest/"
"Repository" = "https://github.com/jeafreezy/nigeria_geodata"
"Documentation" = "https://jeafreezy.github.io/nigeria_geodata/latest/"
"Bug Tracker" = "https://github.com/jeafreezy/nigeria_geodata/issues"
[tool.poetry-dynamic-versioning]
enable = true
vcs = 'git'
style = "semver"
[tool.hatch.build.targets.sdist]
exclude = [
".pytest_cache",
".ruff_cache",
".vscode",
"docs/",
"__pycache__",
".github",
"poetry.lock",
".gitignore",
".pre-commit-config.yaml",
"CHANGES.md",
"CONTRIBUTING.md",
]
[tool.poetry.scripts]
nigeria-geodata = "nigeria_geodata.cli:app"
[tool.poetry.dependencies]
# core dependencies
python = "^3.8.1"
httpx = "^0.27.0"
# optional dependencies
lonboard = { version = "^0.9.3", optional = true }
geopandas = { version = ">=0.13", optional = true }
typer = { extras = ["all"], version = "^0.12.4", optional = true }
[tool.poetry.extras]
standard = ["lonboard", "geopandas", "typer"]
cli = ["typer"]
[tool.poetry.group.dev.dependencies]
ruff = "^0.5.1"
pre-commit = "^3.4.0"
pytest = "^8.3.2"
pandas = "^2"
geopandas = ">=0.13"
pytest-asyncio = "^0.23.8"
mkdocstrings = { extras = ["crystal", "python"], version = "^0.25.2" }
lonboard = "^0.9.3"
typer = { extras = ["all"], version = "^0.12.4" }
[tool.poetry.group.docs.dependencies]
mkdocs-material = { extras = ["imaging"], version = "^9.5.32" }
termynal = "^0.12.1"
mkdocs-typer = "^0.0.3"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"