-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
96 lines (66 loc) · 2.09 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
[tool.poetry]
name = "imgsync"
version = "2.1.0"
description = "imgsync will download sync images from several distribution repositories and send them to an OpenStack Image service (Glance)."
readme = "README.md"
license = "Apache-2.0"
authors = [
"Alvaro Lopez Garcia <[email protected]>"
]
homepage = "http://github.com/alvarolopez/imgsync/"
repository = "http://github.com/alvarolopez/imgsync/"
classifiers = [
"Environment :: OpenStack",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
include = [
"etc/imgsync/imgsync.conf.sample",
]
[tool.poetry.urls]
"Bug Tracker" = "http://github.com/alvarolopez/imgsync/issues"
[tool.poetry.scripts]
glance-imgsync = "imgsync.cmd.cli:main"
[tool.poetry.plugins] # Optional super table
[tool.poetry.plugins."oslo.config.opts"]
imgsync = "deepaas.opts:list_opts"
[tool.poetry.dependencies]
python = "^3.8.1"
requests = "^2.32.3"
oslo-config = "^9.6.0"
oslo-log = "^6.1.2"
dateutils = "^0.6.12"
python-glanceclient = "^4.7.0"
keystoneauth1 = "^5.8.0"
[tool.poetry.group.dev.dependencies]
tox = "^4.15.1"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
[tool.poetry.group.test-flake8.dependencies]
flake8 = "^7.1.1"
flake8-bugbear = "^24.8.19"
flake8-docstrings = "^1.7.0"
flake8-typing-imports = "^1.15.0"
flake8-colors = "^0.1.9"
pep8-naming = "^0.14.1"
pydocstyle = "^6.3.0"
[tool.poetry.group.test-black.dependencies]
black = "^24.8.0"
[tool.poetry.group.test-bandit.dependencies]
bandit = "^1.7.10"
[tool.poetry.group.test-mypy.dependencies]
mypy = "^1.11.2"
[tool.poetry.group.test-pypi.dependencies]
poetry = "^1.8.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"