-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (24 loc) · 897 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
from setuptools import setup
setup(
name = 'awstestutils',
packages = ['awstestutils'],
version = '1.0.0',
description = 'Artifacts to test dependencies with AWS using boto3',
license = 'BSD',
url = 'https://github.com/etoccalino/aws-test-utils',
download_url = 'https://github.com/etoccalino/aws-test-utils/archive/v0.1.6.zip',
keywords = ['aws', 'boto3', 'testing', 'tool'],
long_description=open('README.rst').read(),
install_requires = ['boto3'],
test_suite='tests',
author = 'Elvio Toccalino',
author_email = '[email protected]',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
]
)