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