mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 11:51:06 +00:00
3b1b4638f4
There are some DNS resolving issue on 0.13.6. Bumping to >=1.0 fixes the issues for me. Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
33 lines
903 B
Python
33 lines
903 B
Python
#!/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',
|
|
'gevent >=1.0',
|
|
'isodate >=0.4.4',
|
|
],
|
|
|
|
entry_points={
|
|
'console_scripts': [
|
|
's3tests-generate-objects = s3tests.generate_objects:main',
|
|
's3tests-test-readwrite = s3tests.readwrite:main',
|
|
's3tests-test-roundtrip = s3tests.roundtrip:main',
|
|
's3tests-fuzz-headers = s3tests.fuzz.headers:main',
|
|
's3tests-analysis-rwstats = s3tests.analysis.rwstats:main',
|
|
],
|
|
},
|
|
|
|
)
|