mirror of
https://github.com/ceph/s3-tests.git
synced 2024-11-21 11:51:06 +00:00
024e74c469
Signed-off-by: Ali Maredia <amaredia@redhat.com>
23 lines
518 B
Python
23 lines
518 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',
|
|
'boto3 >=1.0.0',
|
|
'PyYAML',
|
|
'munch >=2.0.0',
|
|
'gevent >=1.0',
|
|
'isodate >=0.4.4',
|
|
],
|
|
)
|