-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 998 Bytes
/
setup.py
File metadata and controls
33 lines (30 loc) · 998 Bytes
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
import pathlib
from setuptools import setup, find_packages
current_dir = pathlib.Path(__file__).parent
README = (current_dir / "README.md").read_text()
REQUIREMENTS = (current_dir / "requirements.txt").read_text().splitlines()
setup(
name="posecamera",
version="2.1.1",
description="Realtime Human Pose Estimation",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/Wonder-Tree/PoseCamera",
author="WonderTree",
author_email="hello@wondertree.co",
license="Apache-2.0",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages= find_packages(),
include_package_data=True,
install_requires = REQUIREMENTS,
entry_points={
"console_scripts": [
"posecamera=posecamera.cli:main",
]
},
)