-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 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
from setuptools import setup, find_packages
with open("README.md", "r") as read_me:
long_description = read_me.read()
setup(
name="UT Libraries IIIF Cookbook",
description="a documentation generator for describing potential IIIF presentation manifests for our content",
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/utkdigitalinitiatives/utk_iiif_recipes",
packages=find_packages(),
extras_require={
"docs": [
"sphinx >= 3.0.1",
"sphinx-rtd-theme >= 0.5.0",
]
},
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics :: Presentation",
],
keywords=["libraries", "iiif", "digital repositories", "documentation"],
)