-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
48 lines (44 loc) · 1.32 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
try:
from setuptools import setup, find_packages
from imp import find_module, load_module
except ImportError:
from distutils.core import setup
URL = "https://gitlab.com/seek-and-deploy/terraform-deployer"
doclink = "Please visit {}.".format(URL)
found = find_module('_version', ['deployer'])
_version = load_module('_version', *found)
setup(
name='deployer',
version=_version.__version__,
description='Deployer',
long_description=doclink,
author='Paul Lussier',
author_email='[email protected]',
url=URL,
packages=find_packages(),
scripts=['bin/deployer', 'bin/gen_config', 'bin/configure-aws.sh'],
package_dir={'deployer': 'deployer'},
package_data={'deployer': ['conf/logging.conf']},
include_package_data=True,
install_requires=[
'argparse',
'botocore',
'boto3',
'docopt',
'flake8',
'jinja2',
'jsonschema',
'termcolor',
'workdir',
],
license="VERACODE",
zip_safe=False,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)