forked from jjjake/internetarchive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.25 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (44 loc) · 1.25 KB
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
40
41
42
43
44
45
46
from setuptools import setup
import sys
setup(
name='internetarchive',
version='0.8.3',
author='Jacob M. Johnson',
author_email='jake@archive.org',
packages=['internetarchive', 'internetarchive.iacli'],
entry_points = {
'console_scripts': [
'ia = internetarchive.iacli.ia:main',
],
},
url='https://github.com/jjjake/ia-wrapper',
license='AGPL 3',
description='A python interface to archive.org.',
long_description=open('README.rst').read(),
install_requires=[
'requests==2.3.0',
'jsonpatch==0.4',
'pytest==2.3.4',
'docopt==0.6.1',
'PyYAML==3.10',
'clint==0.3.3',
'six==1.4.1',
],
extras_require = {
'speedups': [
'ujson==1.33',
'Cython==0.18',
'gevent==1.0',
],
},
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
)
)