s3-tests/setup.py
Tommi Virtanen cc9a026f6b Add dependency on isodate.
Commit ea3f73ef90 made
s3tests use isodate, but did not depend on it.
2011-08-15 14:46:03 -07:00

31 lines
770 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 ==0.13.6',
'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',
],
},
)