-
Notifications
You must be signed in to change notification settings - Fork 27
/
setup.cfg
51 lines (46 loc) · 1.4 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 = badfish
author = Gonzalo Rafuls
author_email = [email protected]
description = Badfish is a Redfish-based API tool for managing bare-metal systems via the Redfish API
long_description = file: README.md
long_description_content_type = text/markdown
license = GPLv3
license_file = LICENSE
platforms = any
url = https://github.com/redhat-performance/badfish
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
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = oob, management
project_urls =
Bug Tracker = https://github.com/redhat-performance/badfish/issues
Documentation = https://github.com/redhat-performance/badfish/blob/master/README.md
Source Code = https://github.com/redhat-performance/badfish
[options]
packages = find:
python_requires = >=3.6
install_requires =
pyyaml>=3.10
aiohttp>=3.7.4
setuptools>=39.0
package_dir =
=src
zip_safe = True
[options.packages.find]
where = src
[sdist]
formats = gztar
[bdist_wheel]
universal = true
[options.entry_points]
console_scripts =
badfish = badfish.main:main