-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (29 loc) · 1.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
#!/usr/bin/env python
"""
marcx consists mainly of a `pymarc.Record` subclass called `marcx.Record`,
that implements a few extra methods, which should ease MARC library
metadata manipulations.
Documentation and examples can be found under: https://github.com/ubleipzig/marcx
"""
from setuptools import setup
__version__ = '0.3.0'
classifiers = """
Development Status :: 4 - Beta
Intended Audience :: Education
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Topic :: Text Processing :: General
"""
setup(name='marcx',
version=__version__,
description='MARC record manipulation library based on pymarc',
long_description=__doc__,
classifiers=list(filter(None, classifiers.split('\n'))),
author='Martin Czygan',
author_email='martin.czygan@gmail.com',
url='https://github.com/ubleipzig/marcx',
py_modules=['marcx'],
install_requires=['pymarc>=5.0', 'jsonpath-rw>=1.3.0', 'ply>=3.4', 'future>=0.16'])