forked from DeepLabCut/DeepLabCut-live-GUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.22 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
"""
DeepLabCut Toolbox (deeplabcut.org)
© A. & M. Mathis Labs
Licensed under GNU Lesser General Public License v3.0
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="deeplabcut-live-gui",
version="0.0.b0",
author="A. & M. Mathis Labs",
author_email="[email protected]",
description="GUI to run real time deeplabcut experiments",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DeepLabCut/DeepLabCut-live-GUI",
python_requires=">=3.5, <3.8",
install_requires=[
"deeplabcut-live",
"pyserial",
"pandas",
"tables",
"multiprocess",
"imutils",
"pillow",
"tqdm",
],
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
),
entry_points={
"console_scripts": [
"dlclivegui=dlclivegui.dlclivegui:main",
"dlclivegui-video=dlclivegui.video:main",
]
},
)