forked from edsu/pymarc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (36 loc) · 1.28 KB
/
setup.py
File metadata and controls
43 lines (36 loc) · 1.28 KB
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
42
43
# This file is part of pymarc. It is subject to the license terms in the
# LICENSE file found in the top-level directory of this distribution and at
# https://opensource.org/licenses/BSD-2-Clause. pymarc may be copied, modified,
# propagated, or distributed according to the terms contained in the LICENSE
# file.
"""Pymarc setup."""
from setuptools import setup
version = "3.2.0"
classifiers = """
Intended Audience :: Education
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
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="ehs@pobox.com",
license="http://www.opensource.org/licenses/bsd-license.php",
packages=["pymarc"],
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=">=3.6.*",
)