forked from eiffel-community/etos-environment-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (43 loc) · 1.37 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
[build-system]
requires = ["setuptools>=72", "wheel", "setuptools_scm[toml]>=8"]
[project]
name = "etos_environment_provider"
dynamic = ["version"]
description = "Environment Provider for ETOS."
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 = [
"cryptography>=42.0.4,<43.0.0",
"jsontas~=1.3",
"packageurl-python~=0.11",
"etcd3gw~=2.3",
"etos_lib==4.3.6",
"opentelemetry-api~=1.21",
"opentelemetry-exporter-otlp~=1.21",
"opentelemetry-sdk~=1.21",
]
[project.urls]
Documentation = "https://etos.readthedocs.io/"
Homepage = "https://github.com/eiffel-community/etos-environment-provider"
Repository = "https://github.com/eiffel-community/etos-environment-provider"
[project.scripts]
[project.optional-dependencies]
testing = ["pytest", "pytest-cov"]
[tool.flake8]
exclude = [".tox", "build", "dist", ".eggs", "docs/conf.py"]
[tool.pytest.ini_options]
addopts = "--cov etos_lib --cov-report term-missing --verbose"
norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]
[tool.build_sphinx]
source_dir = "docs"
build_dir = "build/sphinx"
[tool.devpi.upload]
no-vcs = 1
formats = "bdist_wheel"