-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.34 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "parameterize_jobs"
authors = [
{ name="Michael Delgado", email="[email protected]" },
]
description = "Concisely and clearly create large, parameterized, mapped job specifications"
readme = "README.rst"
dynamic = ["version"]
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
]
[project.urls]
"Homepage" = "https://github.com/ClimateImpactLab/parameterize_jobs"
"Bug Tracker" = "https://github.com/ClimateImpactLab/parameterize_jobs/issues"
[project.optional-dependencies]
docs = [
"ipython",
"Sphinx",
"sphinx-rtd-theme",
]
test = [
"ruff",
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
testpaths = [
"src",
"tests",
]
addopts = "--cov=parameterize_jobs --doctest-modules"
[tool.hatch.version]
source = "vcs"
fallback-version = "999"
[tool.hatch.build.hooks.vcs]
version-file = "src/parameterize_jobs/_version.py"
[tool.ruff]
exclude = [
".eggs",
"docs",
]
[tool.ruff.lint]
# E402: module level import not at top of file
ignore = [
"E402",
]
select = [
# Pyflakes
"F",
# Pycodestyle
"E",
"W",
# Pyupgrade
"UP",
]