-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (35 loc) · 1.05 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='ansibleci',
packages=[
'ansibleci',
'ansibleci.tests',
],
scripts=[
'bin/ansibleci',
],
version='0.2.0',
description='Ansbile CI tests',
author='confirm IT solutions',
author_email='[email protected]',
url='https://github.com/confirm/ansibleci',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
install_requires=[
'PyYAML'
],
)