-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (38 loc) · 1.36 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
[project]
name = "universal-test-runner"
version = "0.6.2"
authors = [{ name = "David Brownman", email = "[email protected]" }]
description = "Universal, language-aware unit test runner."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
]
keywords = ["testing", "test-runner", "pytest"]
dependencies = ["click==8.1.3", "colorama==0.4.6"]
[project.optional-dependencies]
test = ["pytest==7.3.1", "responses==0.23.1"]
release = ["twine==5.1.1", "build==1.2.1"]
ci = ["pyright==1.1.376", "ruff==0.5.7"]
[project.urls]
"Homepage" = "https://github.com/xavdid/universal-test-runner"
"Bug Tracker" = "https://github.com/xavdid/universal-test-runner/issues"
"Author" = "https://xavd.id"
"Changelog" = "https://github.com/xavdid/universal-test-runner/blob/main/CHANGELOG.md"
[project.scripts]
t = "universal_test_runner.runner:run"
universal-test-runner = "universal_test_runner.cli:cli"
[build-system]
requires = ["flit_core>=3.4"]
build-backend = "flit_core.buildapi"
# needed so the LSP performs typechecking
[tool.pyright]
[tool.ruff.lint]
select = ["E", "F", "I001"] # defaults & isort
ignore = ["E501"]