-
Notifications
You must be signed in to change notification settings - Fork 681
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.19 KB
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
[build-system]
requires = ["pbr>=6.1.1"]
build-backend = "pbr.build"
[project]
name = "openstack-ansible"
description = "Ansible playbooks for deploying OpenStack"
readme = "README.rst"
license = "Apache-2.0"
license-files = ["LICENSE.txt"]
authors = [
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://docs.openstack.org/openstack-ansible/latest/"
"Bug Tracker" = "https://bugs.launchpad.net/openstack-ansible/"
Repository = "https://opendev.org/openstack/openstack-ansible"
"Release notes" = "https://docs.openstack.org/releasenotes/openstack-ansible/"
[project.optional-dependencies]
releases = [
"ruamel.yaml>=0.18",
"Jinja2>=3.0",
]
[project.scripts]
openstack-ansible-inventory = "osa_toolkit.generate:main"
openstack-ansible-inventory-manage = "osa_toolkit.manage:main"
openstack-ansible-releases = "osa_toolkit.releasing:main"
[tool.setuptools]
packages = [
"osa_toolkit"
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}