-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (45 loc) · 1.48 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
from __future__ import absolute_import
from setuptools import setup, find_packages
from ansibleroletest import __version__, __author__, __email__, __license__, __url__
install_requires = [
'appdirs >= 1.4.0, < 2.0',
'click >= 4.0, < 5.0',
'docker-py >= 1.10.0, < 1.11',
'giturlparse.py == 0.0.5',
'humanize >= 0.5, < 0.6',
'python-slugify >= 1.0.2, < 2.0',
'PyYAML >= 3.10, < 4.0',
'six >= 1.9.0, < 2.0'
]
setup(
name='ansible-role-test',
version=__version__,
description='Test ansible-galaxy roles using docker',
url=__url__,
author=__author__,
author_email=__email__,
license=__license__,
packages=find_packages(exclude=['tests.*', 'tests']),
install_requires=install_requires,
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
'Topic :: System :: Installation/Setup',
],
entry_points={
'console_scripts': [
'ansible-role-test = ansibleroletest.cli:cli',
'art = ansibleroletest.cli:cli'
]
}
)