-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (33 loc) · 942 Bytes
/
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
31
32
33
34
35
36
37
import multiprocessing, logging # Fix atexit bug
from setuptools import setup, find_packages
def readme():
try:
return open('README.rst').read()
except:
pass
return ''
setup(
name='s3peat',
# Make sure to also update the version in s3peat/__init__.py
version='1.0.0',
author="Jacob Alheid",
author_email="[email protected]",
description="Fast uploader to S3",
long_description=readme(),
url='http://github.com/shakefu/s3peat',
packages=find_packages(exclude=['test']),
install_requires=[
'boto',
'pytool',
],
entry_points={
'console_scripts': {
"s3peat = s3peat.scripts:Main.console_script",
},
},
# test_suite='nose.collector',
# tests_require=[
# 'nose',
# 'mock',
# ],
)