2011-07-13 20:52:54 +00: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',
|
|
|
|
'PyYAML',
|
|
|
|
'bunch >=1.0.0',
|
2015-08-28 01:07:21 +00:00
|
|
|
'gevent >=1.0',
|
2011-08-15 21:46:03 +00:00
|
|
|
'isodate >=0.4.4',
|
2011-07-13 20:52:54 +00:00
|
|
|
],
|
|
|
|
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
's3tests-generate-objects = s3tests.generate_objects:main',
|
2011-07-26 16:51:06 +00:00
|
|
|
's3tests-test-readwrite = s3tests.readwrite:main',
|
2011-07-15 19:06:02 +00:00
|
|
|
's3tests-test-roundtrip = s3tests.roundtrip:main',
|
2011-10-13 20:34:23 +00:00
|
|
|
's3tests-fuzz-headers = s3tests.fuzz.headers:main',
|
2011-12-17 01:54:59 +00:00
|
|
|
's3tests-analysis-rwstats = s3tests.analysis.rwstats:main',
|
2011-07-13 20:52:54 +00:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
)
|