forked from edsu/pymarc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (37 loc) · 1.25 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
version = '3.2.0'
from setuptools import setup
classifiers = """
Intended Audience :: Education
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Text Processing :: General
"""
with open("README.md") as f:
long_description = f.read()
setup(
name = 'pymarc',
version = version,
url = 'http://github.com/edsu/pymarc',
author = 'Ed Summers',
author_email = '[email protected]',
license = 'http://www.opensource.org/licenses/bsd-license.php',
packages = ['pymarc'],
install_requires = ['six>=1.9.0',],
description = 'Read, write and modify MARC bibliographic data',
long_description = long_description,
long_description_content_type = "text/markdown",
classifiers = list(filter(None, classifiers.split('\n'))),
test_suite = 'test',
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
)