-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathsetup.py
48 lines (45 loc) · 1.3 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="anipose",
version="1.1.20",
author="Lili Karashchuk",
author_email="[email protected]",
description="Framework for scalable DeepLabCut based analysis including 3D tracking",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lambdaloop/anipose",
packages=setuptools.find_packages(),
include_package_data=True,
package_data={
'anipose': ['static/*'],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Recognition"
],
entry_points={
'console_scripts': ['anipose=anipose.anipose:cli']
},
install_requires=[
# 'deeplabcut>=2.0.4.1',
'aniposelib>=0.7.0',
'opencv-contrib-python',
'toml',
'numpy',
'scipy',
'pandas',
'tqdm',
'click',
'scikit-video',
'flask', 'flask-compress', 'flask-ipban'
],
extras_require={
'viz': ["mayavi"],
'dlc': ['deeplabcut>=2.0.4.1']
},
)