-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
41 lines (39 loc) · 1.25 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
from setuptools import find_packages, setup
version = '0.15.17.dev0'
setup(
name='touchdown',
version=version,
url='http://yaybu.com/',
description='Orchestration and configuration management in Python',
long_description=open('README.rst').read(),
author='Isotoma Limited',
author_email='[email protected]',
license='Apache Software License',
classifiers=[
'Intended Audience :: System Administrators',
'Operating System :: POSIX',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
zip_safe=False,
install_requires=[
'six',
'contextlib2',
'netaddr',
'fuselage>=1.0.0',
'botocore>=1.4.28',
'requests',
'python-gnupg',
],
entry_points='''
[console_scripts]
touchdown = touchdown.core.main:main
''',
)