-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 1000 Bytes
/
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
from setuptools import setup, find_packages
from codecs import open
from os import path
from io import open
import modules.common_functions
setup(
name='opsworks-cli',
description='A simple python module to work with aws opsworks',
url='https://github.com/chaturanga50/opsworks-cli',
author='Chathuranga Abeyrathna',
author_email='chaturanga50@gmail.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
],
packages=find_packages(),
include_package_data=True,
version="0.5.2",
install_requires=[
'boto3',
'prettytable'
],
scripts=['opsworks-cli'],
project_urls={
'Bug Reports': 'https://github.com/chaturanga50/opsworks-cli/issues',
'Source': 'https://github.com/chaturanga50/opsworks-cli',
}
)