forked from mloesch/sickle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1 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
# coding: utf-8
from setuptools import setup
setup(
name='Sickle',
version='0.7.0',
url='http://github.com/mloesch/sickle',
license='BSD',
author='Mathias Loesch',
description='A lightweight OAI client library for Python',
long_description=open('README.rst').read() + '\n\n' +
open('CHANGES.rst').read(),
packages=['sickle'],
platforms='any',
tests_require=[
'nose>=1.0',
'mock>=1.0.1'
],
install_requires=[
'requests>=1.1.0',
'lxml>=3.2.3'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Text Processing :: Markup :: XML',
],
test_suite="sickle.tests",
keywords="oai oai-pmh",
zip_safe=False,
)