forked from OCR-D/quiver-benchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 818 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = open('requirements.txt').read().split('\n')
setup(
name='quiver_benchmarks',
version='0.1.0',
description='Benchmarks for the OCR-D QuiVer web app',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Michelle Weidling',
author_email='weidling@sub.uni-goettingen.de',
url='https://github.com/OCR-D/quiver-benchmarks',
license='MIT',
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True,
install_requires=install_requires,
package_data={
'': ['*.json', '*.yml', '*.yaml', '*.list', '*.xml'],
},
entry_points={
'console_scripts': [
'quiver=src.cli:cli',
]
},
)