-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
62 lines (50 loc) · 1.43 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
[build-system]
requires = ["setuptools>=72", "wheel", "setuptools_scm[toml]>=8"]
[project]
name = "etos_test_runner"
dynamic = ["version"]
description = "ETOS Test Runner"
authors = [{name = "Tobias Persson", email = "[email protected]"}]
license = { text = "Apache License, Version 2.0" }
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License"
]
dependencies = [
"etos_lib==4.3.6",
"cryptography>=42.0.4,<43.0.0",
"packageurl-python==0.9.1",
"jsontas==1.3.0",
]
[options]
zip_safe = false
include_package_data = true
python_requires = ">=3.4"
[options.packages.find]
where = "src"
exclude = ["tests"]
[project.urls]
Documentation = "https://etos.readthedocs.io/"
Homepage = "https://github.com/eiffel-community/etos-test-runner"
Repository = "https://github.com/eiffel-community/etos-test-runner"
[project.scripts]
[project.optional-dependencies]
testing = ["pytest", "pytest-cov"]
[test]
extras = true
[tool.build_sphinx]
source_dir = "docs"
build_dir = "build/sphinx"
[tool.devpi.upload]
no-vcs = 1
formats = "bdist_wheel"
[tool.flake8]
exclude = [".tox", "build", "dist", ".eggs", "docs/conf.py"]
[tool.pytest.ini_options]
addopts = "--cov etos_test_runner --cov-report term-missing --verbose"
norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]
[tool.setuptools.package-data]
"*" = ["*.sh"]