-
Notifications
You must be signed in to change notification settings - Fork 92
/
setup.py
41 lines (38 loc) · 1.61 KB
/
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
35
36
37
38
39
40
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='deda',
version='2.0-beta4',
python_requires='>=3.3',
description='tracking Dots Extraction, Decoding and Anonymisation toolkit',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/dfd-tud/deda',
author='Timo Richter and Stephan Escher',
author_email='[email protected]',
license='GNU General Public License v3 or later (GPLv3+)',
packages=['libdeda', 'deda_bin', 'deda_gui'],
install_requires=[
'numpy', 'opencv-python', 'argparse', 'scipy', 'Pillow', 'PyPDF2',
'reportlab', 'eel'
],
entry_points={'console_scripts': [
'deda_anonmask_apply = deda_bin.deda_anonmask_apply:main',
'deda_anonmask_create = deda_bin.deda_anonmask_create:main',
'deda_clean_document = deda_bin.deda_clean_document:main',
'deda_compare_prints = deda_bin.deda_compare_prints:main',
'deda_parse_print = deda_bin.deda_parse_print:main',
'deda_extract_yd = libdeda.extract_yd:main',
'deda_gui = deda_gui.deda_gui:main',
'deda_create_dots = deda_bin.deda_create_dots:main',
]},
include_package_data=True,
#package_data={'deda_gui':['web/*/*']},
zip_safe=False,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Printing",
),
)