-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (70 loc) · 2.09 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
[project]
name = "toolbox-sdk"
dynamic = ["version"]
description = "Official Python SDK for NextGIS Toolbox providing convenient access to geographical data processing tools"
authors = [{ name = "NextGIS", email = "info@nextgis.com" }]
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = [
"gis",
"nextgis",
"toolbox",
"spatial",
"geospatial",
"geography",
"mapping",
]
requires-python = ">=3.8"
dependencies = ["filetype>=1.2.0", "requests>=2.28.0"]
[project.optional-dependencies]
dev = [
"pytest>=8.3.4",
"python-dotenv>=1.0.1",
"responses>=0.25.3",
]
[project.urls]
Homepage = "https://github.com/nextgis/toolbox_sdk"
Repository = "https://github.com/nextgis/toolbox_sdk.git"
Issues = "https://github.com/nextgis/toolbox_sdk/issues"
[build-system]
requires = ["hatchling>=1.24.2"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/toolbox_sdk/version.py"
[tool.hatch.envs.default]
extra-dependencies = [
"coverage[toml]",
"pytest>=8.3.4",
"python-dotenv>=1.0.1",
"responses>=0.25.3",
"ruff",
]
[tool.hatch.envs.hatch-test]
extra-dependencies = [
"python-dotenv>=1.0.1",
"responses>=0.25.3",
]
[tool.hatch.envs.hatch-static-analysis]
config-path = "none"
[tool.ruff]
lint.select = ["E", "F", "W", "I"]
[tool.ruff.lint.per-file-ignores]
"src/toolbox_sdk/__init__.py" = ["F401"]
[tool.ruff.lint.isort]
known-first-party = ["toolbox_sdk"]
known-local-folder = ["conftest"]
[tool.coverage.run]
omit = ["tests/*"]