2011-07-13 13:52:54 -07:00
|
|
|
#!/usr/bin/python
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='s3tests',
|
|
|
|
version='0.0.1',
|
|
|
|
packages=find_packages(),
|
|
|
|
|
|
|
|
author='Tommi Virtanen',
|
|
|
|
author_email='tommi.virtanen@dreamhost.com',
|
|
|
|
description='Unofficial Amazon AWS S3 compatibility tests',
|
|
|
|
license='MIT',
|
|
|
|
keywords='s3 web testing',
|
|
|
|
|
|
|
|
install_requires=[
|
|
|
|
'boto >=2.0b4',
|
2017-12-07 15:41:01 -05:00
|
|
|
'boto3 >=1.0.0',
|
2011-07-13 13:52:54 -07:00
|
|
|
'PyYAML',
|
2019-03-22 13:58:30 -04:00
|
|
|
'munch >=2.0.0',
|
2015-08-28 09:07:21 +08:00
|
|
|
'gevent >=1.0',
|
2011-08-15 14:46:03 -07:00
|
|
|
'isodate >=0.4.4',
|
2011-07-13 13:52:54 -07:00
|
|
|
],
|
|
|
|
)
|