-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 829 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 829 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as fh:
long_description = fh.read()
setup(
name="aws_toolset",
version="0.0.6",
url='https://github.com/sgcooper78/aws_toolset',
author="Scott Cooper",
author_email="sgcooper78@gmail.com",
description="AWS Toolset for AWS Devs",
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=['boto3', 'inquirer'],
keywords=['python', 'aws', 'boto3'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
],
entry_points={'console_scripts': ['aws_toolset = aws_toolset.aws_toolset:main']},
include_package_data=True
)