-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (55 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
68 lines (55 loc) · 1.33 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eeauth"
dynamic = ["version"]
description = "An Earth Engine account manager."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [{ name = "Aaron Zuspan" }]
keywords = [
"earthengine",
"gee",
"jupyter",
"notebook",
]
dependencies = [
"earthengine-api>=0.1.317",
"click",
"pydantic==2.*",
]
[project.urls]
Homepage = "https://github.com/aazuspan/eeauth"
[project.scripts]
eeauth = "eeauth.cli:cli"
[tool.hatch.version]
path = "src/eeauth/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/eeauth"]
[tool.hatch.build.targets.sdist]
include = ["/src"]
[tool.hatch.envs.default]
dependencies = ["pre-commit"]
[tool.hatch.envs.test]
dependencies = [
"pytest",
"pytest-cov",
]
[tool.hatch.envs.test.scripts]
all = "pytest . {args}"
cov = "pytest . --cov=src/eeauth {args}"
[tool.pytest.ini_options]
markers = [
"missing_registry: mark test as requiring a missing registry file",
"missing_credentials: mark test as requiring missing persistent credentials",
]
[tool.ruff]
select = ["E", "I", "F", "B", "FA", "UP", "PT", "Q", "RET", "SIM", "PERF"]
fix = true
show-fixes = true
[tool.ruff.isort]
known-first-party = ["eeauth"]
[tool.ruff.pyupgrade]
keep-runtime-typing = true