-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
23 lines (22 loc) · 886 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, find_packages
setup(
name = 'CV_skeleton_provider',
version = '1.0.1',
description = 'provide skeleton of a person',
author = 'LiiNen',
author_email = '[email protected]',
url = 'https://github.com/LiiNen/CV_skeleton_provider',
install_requires = ['numpy', 'opencv-python'],
keywords = ['Skeleton Provider'],
python_requires = '>=3',
packages = find_packages(),
package_data = {},
zip_safe = False,
classifiers = [
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)