-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 1.04 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
from setuptools import setup, find_packages
with open("README.md", "r") as read_me:
long_description = read_me.read()
setup(
name="UT Libraries MODS to RDF",
description="a documentation generator for describing UT Libraries' MODS to RDF metadata application profile",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.0.1",
author="Mark Baggett",
author_email="[email protected]",
maintainer_email="[email protected]",
url="https://github.com/UTKcataloging/mods_to_rdf",
packages=find_packages(),
extras_require={
"docs": [
"sphinx >= 3.0.1",
"sphinxcontrib-napoleon >= 0.7",
"sphinx-markdown-tables >= 0.0.9",
"recommonmark >=0.5.0",
]
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
keywords=["libraries", "metadata", "digital repositories"],
)