forked from zju3dv/EasyMocap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (38 loc) · 1.07 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
'''
@ Date: 2021-03-02 16:53:55
@ Author: Qing Shuai
@ LastEditors: Qing Shuai
@ LastEditTime: 2022-11-03 13:10:59
@ FilePath: /EasyMocapRelease/setup.py
'''
from setuptools import setup
setup(
name='easymocap',
version='0.2.1', #
description='Easy Human Motion Capture Toolbox',
author='Qing Shuai',
author_email='[email protected]',
# test_suite='setup.test_all',
packages=[
'easymocap',
'easymocap.config',
'easymocap.dataset',
'easymocap.smplmodel',
'easymocap.pyfitting',
'easymocap.mytools',
'easymocap.annotator',
'easymocap.estimator',
'myeasymocap'
],
entry_points={
'console_scripts': [
'emc=apps.mocap.run:main_entrypoint',
# 'easymocap_calib=easymocap.mytools.entry:calib',
# 'easymocap_tools=easymocap.mytools.entry:main',
# 'extract_keypoints=easymocap.mytools.cmdtools.extract_keypoints:main'
],
},
install_requires=[],
data_files = []
)
emc = "apps.mocap.run:main_entrypoint"