forked from anarchivist/worldcat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 824 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
from setuptools import setup, find_packages
install_requires = ['pymarc']
classifiers = """
Intended Audience :: Education
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
License :: OSI Approved :: GNU General Public License (GPL)
Programming Language :: Python
Development Status :: 4 - Beta
"""
setup(
name = 'worldcat',
version = '0.3.6', # remember to update worldcat/__init__.py on release!
url = 'http://github.com/anarchivist/worldcat',
author = 'Mark A. Matienzo',
author_email = 'mark@matienzo.org',
license = 'GPL/BSD',
packages = find_packages(),
install_requires = install_requires,
description = 'Interact with OCLC\'s WorldCat Affiliate APIs',
classifiers = filter(None, classifiers.split('\n')),
)