forked from urschrei/pyzotero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (42 loc) · 1.43 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
setup.py
Created by Stephan Hügel on 2011-03-04
"""
import sys
from setuptools import setup, find_packages
version = '1.1.1'
setup(
name='Pyzotero',
version=version,
description='Python wrapper for the Zotero API',
author='Stephan Hügel',
author_email='[email protected]',
license='GNU GPL Version 3',
url='https://github.com/urschrei/pyzotero',
include_package_data=True,
download_url='https://github.com/urschrei/pyzotero/tarball/v%s' % version,
keywords=['zotero'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(),
install_requires=['feedparser >= 5.1.0', 'pytz', 'requests', 'six'],
extras_require={
'ordereddict': ['ordereddict==1.1']
},
long_description="""\
A Python wrapper for the Zotero Server v3 API
---------------------------------------------
Provides methods for accessing Zotero Server API v3.
For full documentation see http://pyzotero.readthedocs.org/en/latest/
This version requires Python 2.7.x / 3.4.x"""
)