-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 963 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='whiiif',
version='2.0.0',
long_description=" ",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask',
'requests',
'lxml',
'bleach'
],
author="Mike Bennett",
author_email="[email protected]",
description="Whiiif - Word Highlighting (in) IIIF. Whiiif is an implementation of the IIIF Search API designed to provide full-text search with granular, word-level Annotation results to enable front-end highlighting.",
url="https://mbennett-uoe.github.io/whiiif/",
project_urls={
"Bug Tracker": "https://github.com/mbennett-uoe/whiiif/issues",
"Documentation": "https://mbennett-uoe.github.io/whiiif/",
"Source Code": "https://github.com/mbennett-uoe/whiiif",
},
license="LGPL v3",
license_file="LICENSE.md",
platforms=["linux","windows"]
)