forked from barneagal/s3funnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.01 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup, find_packages
import sys, os
version = '0.6.5'
setup(name='s3funnel',
version=version,
description="Multithreaded tool for performing operations on Amazon's S3",
long_description="""\
This tool uses the workerpool for multithreading and boto for access to the Amazon S3 API.""",
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Andrey Petrov',
author_email='[email protected]',
maintainer='Sorin Stoiana',
maintainer_email='[email protected]',
url='https://github.com/sstoiana/s3funnel',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'boto >= 2.2.2','workerpool >= 0.9.2',
],
entry_points="""
# -*- Entry points: -*-
""",
scripts=['scripts/s3funnel'],
)