-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
72 lines (66 loc) · 1.74 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
[project]
name = "galactory"
version = "0.11.2"
authors = [
{name = "Brian Scholer"},
]
maintainers = [
{name = "Brian Scholer"},
]
license = {file = "LICENSE"}
description = "Ansible Galaxy proxy using Artifactory as a backend"
readme = {file = "README.md", content-type = "text/markdown"}
keywords = [
"ansible",
"galaxy",
"artifactory",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dependencies = [
"dohq-artifactory>=0.9,<0.10",
"Flask>=2.1,<3",
"semver>=2,<4",
"base64io>=1,<2",
"ConfigArgParse>=1.5,<2",
"requests>=2.26.0,<3",
"brotli>=1,<2",
]
[project.optional-dependencies]
tests = [
"pytest>=7.1,<8",
"pytest-cov",
"pytest-mock",
"coverage",
# "pytest-docker-compose",
# "ansible-runner",
# "ansible-core",
]
[project.urls]
Repository = "https://github.com/briantist/galactory"
Changelog = "https://github.com/briantist/galactory/blob/main/CHANGELOG.rst"
Issues = "https://github.com/briantist/galactory/issues"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = ["changelogs"]
[tool.pytest.ini_options]
minversion = "7.1"
addopts = "--cov --cov-report=xml"
xfail_strict = true
# addopts = "--docker-compose=artifactory/docker-compose.yml"
# addopts = "-ra -q"
testpaths = [
"unit",
# "integration",
]