-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (20 loc) · 873 Bytes
/
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
from setuptools import setup
requirements = open('requirements.txt').read().splitlines()
setup(name='animkp',
description='Anime Keypoint Estimation .',
version='0.1.0',
packages=['pose_estimator',
'pose_estimator.wrapper',
'pose_estimator.wrapper.pose_anime',
'pose_estimator.lib',
'pose_estimator.lib.config',
'pose_estimator.lib.utils',
'pose_estimator.lib.core',
'pose_estimator.lib.models',
'pose_estimator.lib.dataset',
'pose_estimator.lib.augment','pose_estimator.lib.augment.affine','pose_estimator.lib.augment.tps',
'pose_estimator.lib.component',
'pose_estimator.lib.nms',],
install_requires=requirements,
include_package_data=True,
zip_safe=False)