forked from SatelliteQE/broker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.24 KB
/
setup.py
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
#!/usr/bin/env python
AWXKIT = (
"awxkit @ git+https://github.com/ansible/awx.git"
"@11.2.0#egg=awxkit&subdirectory=awxkit"
)
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("HISTORY.rst") as history_file:
history = history_file.read()
requirements = [AWXKIT, "click", "dynaconf>=3.0", "logzero", "pyyaml", "ssh2-python"]
setup(
name="broker",
version="0.1.0",
description="The infrastructure middleman.",
long_description=readme + "\n\n" + history,
author="Jacob J Callahan",
author_email="jacob.callahan05@@gmail.com",
url="https://github.com/SatelliteQE/broker",
packages=find_packages(),
entry_points={"console_scripts": ["broker=broker.commands:cli"]},
include_package_data=True,
install_requires=requirements,
license="GNU General Public License v3",
zip_safe=False,
keywords="broker",
classifiers=[
"Development Status :: 2 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
)