-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 1.22 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
from setuptools import setup
from pyawx import __version__ as version
with open("README.md", "r") as md:
long_description = md.read()
setup(
name="pyawx-client",
packages=["pyawx", "pyawx.models", "pyawx.models.utils", "pyawx.exceptions"],
version=version,
license="Apache 2.0",
description="Python API to access Ansible AWX/Tower v2 API",
long_description=long_description,
long_description_content_type="text/markdown",
author="Dennis Whitney",
author_email="dennis@irunasroot.com",
url="https://github.com/irunasroot/pyawx-client",
download_url="https://github.com/irunasroot/pyawx-client/archive/v0.2.0.tar.gz",
keywords=["ansible", "tower", "awx", "redhat", "ansible tower", "ansible awx", "playbook", "automation"],
install_requires=[
"requests"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
)