forked from dhlab-epfl/dhSegment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 938 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
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='dh_segment',
version='0.3',
license='GPL',
url='https://github.com/dhlab-epfl/dhSegment',
description='Generic framework for historical document processing',
packages=find_packages(exclude=['exps*']),
project_urls={
'Paper': 'https://arxiv.org/abs/1804.10371',
'Source Code': 'https://github.com/dhlab-epfl/dhSegment'
},
install_requires=[
'tensorflow',
'numpy',
'imageio',
'pandas',
'scipy',
'shapely',
'scikit-learn',
'opencv-python',
'tqdm',
],
extras_require={
'doc': [
'sphinx',
'sphinx-autodoc-typehints',
'sphinx-rtd-theme',
'sphinxcontrib-bibtex',
'sphinxcontrib-websupport'
],
},
zip_safe=False)