-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
151 lines (128 loc) · 2.63 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "epr"
version = "0.1.0"
description = "A Python Client for Event Provenance Registry (EPR)"
readme = "README.md"
requires-python = ">= 3.9"
license.file = "LICENSE"
authors = [
{ name = "Brett Smith", email = "[email protected]" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"urllib3",
"jsonpath-ng",
]
[project.optional-dependencies]
lint = [
"ruff",
]
test = [
"coverage",
"pytest",
"mock",
]
build = [
"setuptools",
"wheel",
"build",
"twine",
]
[project.scripts]
eprcli = "epr.main:main"
[project.urls]
"Homepage" = "https://github.com/xbcsmith/epr-python"
[tool.distutils.bdist_wheel]
universal = true
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "W", "B", "I", "RUF"]
ignore = ["E402", "E501", "E731"]
[tool.ruff.lint.isort]
known-first-party = ["epr"]
force-wrap-aliases = true
combine-as-imports = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = clean, check, py{12}, report
[testenv]
setenv =
PYTHONPATH={toxinidir}/tests/
PYTHONUNBUFFERED=yes
passenv = *
usedevelop = false
deps =
coverage
pytest
mock
extras = testing
commands =
coverage run -p -m pytest -vv {posargs:tests/}
[testenv:clean]
deps =
coverage
pytest
mock
skip_install = true
envdir = {toxworkdir}/coverage
allowlist_externals = find
rm
commands =
rm -rf build/ dist/
coverage erase
[testenv:check]
deps =
ruff
skip_install = true
commands =
ruff check src/epr/ tests/
[testenv:report]
deps = coverage
skip_install = true
envdir = {toxworkdir}/coverage
commands =
coverage combine
coverage report
[testenv:build]
deps =
wheel
build
twine
skip_install = true
commands =
python -m build --sdist bdist_wheel
twine check dist/*.*
[testenv:release]
deps =
{[testenv:build]deps}
twine
skip_install = true
commands =
{[testenv:build]commands}
twine upload --skip-existing dist/*.*
[testenv:format]
deps =
ruff
skip_install = true
commands =
ruff check --fix src/epr/ tests/
"""