-
Notifications
You must be signed in to change notification settings - Fork 36
/
setup.cfg
51 lines (45 loc) · 1.27 KB
/
setup.cfg
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
[metadata]
name = quads
description = QUADS automates the future scheduling, end-to-end provisioning and delivery of bare-metal servers and networks.
long_description = file: README.md
long_description_content_type = text/markdown
license = GPLv3
license_files = LICENSE
platforms = any
url = https://github.com/redhat-performance/quads
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3.11
keywords = oob, management
project_urls =
Bug Tracker = https://github.com/redhat-performance/quads/issues
Documentation = https://github.com/redhat-performance/quads/blob/master/README.md
Source Code = https://github.com/redhat-performance/quads
[options]
packages = find:
python_requires = >=3.11
install_requires =
pyyaml>=3.10
setuptools>=39.0
zip_safe = True
[options.packages.find]
where = src
exclude =
server*
[options.package_data]
quads =
templates/*
web/templates/*
web/templates/wiki/*
web/static/css/*
web/static/js/*
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[options.entry_points]
console_scripts =
quads = quads.cli.main:main