-
Notifications
You must be signed in to change notification settings - Fork 37
/
setup.py
53 lines (48 loc) · 1.38 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
from setuptools import setup
# extract version from __init__.py
with open('ultimatelabeling/__init__.py', 'r') as f:
VERSION_LINE = [l for l in f if l.startswith('__version__')][0]
VERSION = VERSION_LINE.split('=')[1].strip()[1:-1]
setup(
name='ultimatelabeling',
version=VERSION,
packages=[
'ultimatelabeling',
'ultimatelabeling.views',
'ultimatelabeling.models',
'ultimatelabeling.styles',
'ultimatelabeling.siamMask',
'ultimatelabeling.siamMask.models',
'ultimatelabeling.siamMask.utils'
],
license='MIT',
description='A multi-purpose Video Labeling GUI in Python with integrated SOTA detector and tracker.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Alexandre Carlier',
author_email='[email protected]',
url='https://github.com/alexandre01/UltimateLabeling',
install_requires=[
'PyQt5',
'opencv-contrib-python',
'paramiko',
'scp',
'pynput',
'numpy',
'tqdm',
'torch',
'pillow',
'matplotlib',
'pandas',
'scipy'
],
extras_require={
'test': [
'pytest',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
],
)