-
Notifications
You must be signed in to change notification settings - Fork 275
/
setup.py
32 lines (31 loc) · 1.04 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
from setuptools import setup, find_packages
setup(
#basic info
name="hyperpose",
version="2.2.0",
#pack-up
packages=find_packages(),
include_package_data=False,
install_requires=[
"cython>=0.29",
"numpy==1.16.4",
"easydict>=1.9,<=1.10",
"opencv-python>=3.4,<3.5",
"tensorflow==2.3.1",
"tensorlayer==2.2.3",
"pycocotools"
],
#meta data
author="TensorLayer",
author_email="[email protected]",
description="HyperPose is a library for building human pose estimation systems that can efficiently operate in the wild.",
long_description='Please visit HyperPose [GitHub repo](https://github.com/tensorlayer/hyperpose).',
long_description_content_type="text/markdown",
license="Apache 2.0 license",
keywords="pose estimation platform",
url="https://github.com/tensorlayer/hyperpose",
project_url={
"Source Code": "https://github.com/tensorlayer/hyperpose",
"Documentation": "https://hyperpose.readthedocs.io/en/latest/"
}
)