-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 1.15 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
import setuptools
setuptools.setup(author='Chris Rosenthal',
author_email='crosenth@gmail.com',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: '
'GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3 :: Only'],
python_requires='>=3.3',
description='AWS Batch helper',
entry_points={
'console_scripts': {'aws_batch=aws_batch:main'}},
install_requires=['awscli', 'boto3'],
keywords=['aws', 'batch', 's3', 'awscli', 'boto3'],
license='GPLv3',
name='aws_batch',
py_modules=['aws_batch'],
version=0.6,
url='https://github.com/crosenth/aws_batch'
)