forked from jewest27/frankenloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (28 loc) · 838 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
38
39
# !/usr/bin/env python
import os
import sys
# minimum required version is 2.6; py3k not supported yet
if not ((2, 6) <= sys.version_info < (3, 0)):
raise ImportError("smart_open requires 2.6 <= python < 3")
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='smart_open',
version='1.1.0',
description='Utils for working with Usergrid Downloads',
packages=find_packages(),
author=u'Jeffrey West',
author_email='[email protected]',
maintainer=u'Jeffrey West',
maintainer_email='[email protected]',
url='usergrid.incubator.apache.org',
license='Apache',
platforms='any',
install_requires=[
'boto >= 2.0',
'bz2file',
'requests',
'smart_open'
]
)