-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
71 lines (53 loc) · 1.51 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
#########################
# Project Configuration #
#########################
# Project name and version needed to run tests
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "hdx-scraper-dcc"
requires-python = ">=3.12"
dependencies = [
"hdx-python-api",
"hdx-python-utilities",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov"
]
dev = ["pre-commit"]
#########
# Hatch #
#########
# Build
[tool.hatch.build.targets.wheel]
packages = ["src/hdx"]
[tool.hatch.build.hooks.vcs]
version-file = "src/hdx/scraper/dcc/_version.py"
[tool.hatch.metadata]
allow-direct-references = true
# Versioning
[tool.hatch.version]
source = "vcs"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
version_scheme = "python-simplified-semver"
# Tests
[tool.hatch.envs.hatch-test]
features = ["test"]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.12"]
[tool.hatch.envs.hatch-test.scripts]
run = """
pytest -c .config/pytest.ini --rootdir=. --junitxml=test-results.xml \
--cov --cov-config=.config/coveragerc --no-cov-on-fail \
--cov-report=lcov --cov-report=term-missing
"""
[tool.hatch.envs.hatch-static-analysis.scripts]
format-check = ["ruff format --config .config/ruff.toml --check --diff {args:.}",]
format-fix = ["ruff format --config .config/ruff.toml {args:.}",]
lint-check = ["ruff check --config .config/ruff.toml {args:.}",]
lint-fix = ["ruff check --config .config/ruff.toml --fix {args:.}",]