mirror of
https://github.com/ceph/s3-tests.git
synced 2025-05-10 09:12:26 +00:00
Make generate_objects.py and rand_readwrite.py inside the package.
Handle dependencies properly. Now e.g. "./bootstrap && ./virtualenv/bin/s3tests-test-readwrite" should just work.
This commit is contained in:
parent
33b25c577e
commit
02a4c82dfa
8 changed files with 61 additions and 8 deletions
29
setup.py
Normal file
29
setup.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
#!/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',
|
||||
],
|
||||
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
's3tests-generate-objects = s3tests.generate_objects:main',
|
||||
's3tests-test-readwrite = s3tests.rand_readwrite:main',
|
||||
],
|
||||
},
|
||||
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue