-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (38 loc) · 1.03 KB
/
setup.py
File metadata and controls
39 lines (38 loc) · 1.03 KB
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
35
36
37
38
39
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="dh_segment",
version="0.6.0",
license="GPL",
url="https://github.com/dhlab-epfl/dhSegment",
description="Generic framework for historical document processing",
packages=find_packages(),
project_urls={
"Paper": "https://arxiv.org/abs/1804.10371",
"Source Code": "https://github.com/dhlab-epfl/dhSegment",
},
install_requires=[
"imageio>=2.5",
"pandas>=0.24.2",
"shapely>=1.6.4",
"scikit-learn>=0.20.3",
"scikit-image>=0.15.0",
"opencv-python>=4.0.1",
"tqdm>=4.31.1",
"sacred==0.7.4", # 0.7.5 causes an error
"requests>=2.21.0",
"click>=7.0",
"tensorflow==2.7.0rc1",
"numpy==1.21.3"
],
extras_require={
"doc": [
"sphinx",
"sphinx-autodoc-typehints",
"sphinx-rtd-theme",
"sphinxcontrib-bibtex",
"sphinxcontrib-websupport",
],
},
zip_safe=False,
)