forked from DeepLabCut/DeepLabCut
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.9 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.9 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
40
41
42
43
44
45
46
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
DeepLabCut2.0 Toolbox
https://github.com/AlexEMG/DeepLabCut
A Mathis, alexander.mathis@bethgelab.org
T Nath, nath@rowland.harvard.edu
M Mathis, mackenzie@post.harvard.edu
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="deeplabcut",
version="2.0.5",
author="Alexander Mathis, Tanmay Nath, Mackenzie Mathis",
author_email="alexander.mathis@bethgelab.org",
description="Markerless pose-estimation of user-defined features with deep learning",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AlexEMG/DeepLabCut",
install_requires=['certifi','chardet>=3.0.4','click','easydict>=1.7',
'h5py>=2.7','imageio>=2.3.0','intel-openmp',
'ipython>=6.0.0','ipython-genutils>=0.2.0',
'matplotlib','moviepy>=0.2.3.5','numpy>=1.14.5','opencv-python>=3.4',
'pandas>=0.21.0','patsy','python-dateutil>=2.7.3','pyyaml>=4.2b1','requests',
'ruamel.yaml>=0.15','setuptools','scikit-image>=0.14.0','scikit-learn>=0.19.2',
'scipy~=1.2.1','six>=1.11.0','statsmodels>=0.9.0','tables>=3.4.3',
'tqdm>4','wheel>=0.31.1'],
scripts=['deeplabcut/pose_estimation_tensorflow/models/pretrained/download.sh'],
packages=setuptools.find_packages(),
data_files=[('deeplabcut',['deeplabcut/pose_cfg.yaml'])],
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]
dlc=dlc:main""",
)
#https://stackoverflow.com/questions/39590187/in-requirements-txt-what-does-tilde-equals-mean