-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.28 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.28 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
47
48
49
50
51
52
"""
dlc2kinematics
© M. Mathis Lab
https://github.com/AdaptiveMotorControlLab/dlc2kinematics/
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="dlc2kinematics",
version="0.1.0",
author="Mackenzie Mathis Lab Members",
author_email="mackenzie@post.harvard.edu",
description="Library for kinematic analysis of DeepLabCut outputs",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AdaptiveMotorControlLab/dlc2kinematics/",
install_requires=[
"h5py",
"c3d",
"ipython",
"ipython-genutils",
"matplotlib>=3.0.3",
"numpy<1.25",
"pandas>=1.0",
"python-dateutil",
"pyyaml",
"requests",
"setuptools",
"scikit-image",
"scikit-learn<1.2.2",
"scikit-kinematics",
"scipy",
"tables",
"umap-learn",
"tqdm",
"ruamel.yaml>=0.15.0",
"wheel",
],
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=(
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
),
entry_points="""[console_scripts]
kin=kin:main""",
)