-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
89 lines (86 loc) · 2.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst', 'r', encoding='utf8') as f:
long_description = f.read()
setup(
name='video699',
packages=[
'video699',
'video699.document',
'video699.event',
'video699.page',
'video699.frame',
'video699.quadrangle',
'video699.screen',
'video699.video',
'video699.screen.semantic_segmentation'
],
package_data={
'video699': [
'configuration/default.ini',
],
'video699.page': [
'siamese/pretrained/classification_model.h5',
'siamese/pretrained/training_moments.pkl',
'siamese/pretrained/training_history.pkl',
'siamese/pretrained/format_version',
],
'video699.screen': [
'annotated/LICENSE',
'annotated/*.xml',
'annotated/*/*.xml',
],
'video699.video': [
'annotated/LICENSE',
'annotated/*.xml',
'annotated/*/*.xml',
'annotated/*/*.png',
'annotated/*/*.pdf',
],
},
version='1.0.0b1+2020.6',
description='System for lecture slide page retrieval based on lecture recordings',
author='Vit Novotny',
author_email='[email protected]',
url='https://pypi.org/project/video699/',
project_urls={
'Source': 'https://github.com/video-699/implementation-system',
'Tracker': 'https://github.com/video-699/implementation-system/issues',
},
install_requires=[
'annoy>=1.13.0',
'ImageHash>=4.0',
'Keras>=2.3.1',
'lxml>=4.6.2',
'npstreams>=1.5.1',
'numpy>=1.18.2',
'opencv-python>=4.1.2',
'Pillow>=8.1.1',
'PyMuPDF~=1.13.18',
'python-dateutil>=2.7.3',
'pyxdg>=0.26',
'Rtree>=0.8.3',
'scipy>=1.4.1',
'Shapely>=1.6.4.post2',
'tensorflow>=2.5.1',
'fastai~=1.0.60'
],
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Education',
'Topic :: Multimedia :: Video :: Conversion',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
],
)