forked from pulp/pulp_ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·48 lines (44 loc) · 1.46 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
41
42
43
44
45
46
47
48
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("requirements.txt") as requirements:
requirements = requirements.readlines()
with open("README.rst") as f:
long_description = f.read()
setup(
name="pulp-ansible",
version="0.9.0.dev",
description="Pulp plugin to manage Ansible content, e.g. roles",
long_description=long_description,
license="GPLv2+",
author="Pulp Ansible Plugin Project Developers",
author_email="[email protected]",
url="https://github.com/pulp/pulp_ansible",
install_requires=requirements,
extras_require={
"test": [
"coverage",
"dynaconf",
"flake8",
"flake8-docstrings",
"flake8-quotes",
"flake8-tuple",
"mock",
"orionutils",
"pulp-smash",
"pytest",
]
},
include_package_data=True,
packages=find_packages(exclude=["tests"]),
classifiers=(
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX :: Linux",
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
),
entry_points={"pulpcore.plugin": ["pulp_ansible = pulp_ansible:default_app_config"]},
)