-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (44 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "eerepr"
dynamic = ["version"]
description = "Code Editor-style reprs for Earth Engine data in a Jupyter notebook."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
authors = [{ name = "Aaron Zuspan" }]
keywords = [
"earthengine",
"gee",
"html",
"jupyter",
"notebook",
"reprs",
]
dependencies = [
"earthengine-api",
]
[project.urls]
Homepage = "https://github.com/aazuspan/eerepr"
[tool.hatch.version]
path = "eerepr/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["/eerepr"]
[tool.hatch.envs.default]
dependencies = ["pre-commit"]
[tool.hatch.envs.test]
dependencies = [
"pytest",
"pytest-cov",
"pytest-regressions",
"pytest-mock",
]
[tool.hatch.envs.test.scripts]
all = "pytest . {args}"
cov = "pytest . --cov=eerepr {args}"
html = "python tests/preview_html.py"
[tool.ruff.lint]
select = ["E", "I", "F", "B", "FA", "UP", "ISC", "PT", "Q", "RET", "SIM", "PERF"]
exclude = ["*.ipynb"]