-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 1.02 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
from setuptools import setup, find_packages
with open('./requirement.txt') as f:
required = f.read().splitlines()
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Information Technology',
'Operating System :: Unix',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='pygesture',
version='1.0.6',
description='Pre-built OpenCV-Python/Mediapipe modules that easy to use and understand.',
long_description=open('README.md').read() + '\n\n' + open('CHANGELOG.txt').read(),
long_description_content_type='text/markdown',
url='https://github.com/GoodDay360/pygesture',
author='GoodDay360',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
keywords=['pygesture','library','module','gesture_recognition'],
packages=find_packages(exclude=["dist","git","pygesture.egg-info","assets"]),
install_requires=required,
)