-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (63 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
74 lines (63 loc) · 1.54 KB
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
[build-system]
requires = ["hatchling>=1.0.0"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["erclient"]
[project]
name = "earthranger-client"
dynamic = ["version"]
description = "Client for EarthRanger API"
readme = "README.md"
authors = [
{name = "EarthRanger", email = "opensource@earthranger.com"}
]
license = {text = "Apache-2.0"}
license-files = [
"LICENSE",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"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"
]
keywords = ["api", "EarthRanger"]
requires-python = ">=3.8"
dependencies = [
"requests>=2.28.0",
"httpx>=0.23.3",
"dateparser>=1.1.1",
"gpxpy>=1.5.0",
"pydantic>=1.10.17",
"pytz>=2021.1",
"importlib-metadata;python_version<\"3.8\""
]
[project.urls]
Homepage = "http://github.com/PADAS/er-client"
[dependency-groups]
dev = [
"hatch>=1.14.1",
"pre-commit>=3.5.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.24.0",
"respx>=0.22.0",
]
[tool.hatch.version]
path = "erclient/version.py"
[tool.hatch.envs.default]
installer = "uv"
features = ["test"]
[project.optional-dependencies]
test = [
"pytest>=8",
"pytest-asyncio",
"anyio",
"respx>=0.22",
"pytest-mock"
]
[tool.hatch.envs.default.scripts]
test = "pytest -q"