forked from kba/transkribus-to-prima
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
21 lines (20 loc) · 758 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup
setup(
name='transkribus-to-prima',
version='0.0.1',
author="kba, bertsky",
author_email="unixprog@gmail.com",
url="https://github.com/kba/transkribus-to-prima",
license='Apache License 2.0',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=open('requirements.txt').read().split('\n'),
packages=['transkribus_to_prima'],
entry_points={
'console_scripts': [
'transkribus-to-prima=transkribus_to_prima.cli:cli',
'page-fix-coordinates=transkribus_to_prima.cli_coordinate_to_prima:cli',
'page-dimensions-from-image=transkribus_to_prima.set_dimensions_from_image:cli'
]
},
)