-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.85 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
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
def requirements() -> list:
retval = []
with open('requirements.txt') as fr:
for line in fr:
if line.isspace() or line.startswith('#'):
continue
retval.append(line.strip())
return retval
setup(name='hpose',
version='0.20220830',
author='Cristina Bolaños Peño',
author_email='[email protected]',
license='GNU General Public License v3',
description='Human pose detection library (Python3)',
long_description='This is a Python3 library ' +
'which allows one to extract human joints ' +
'position from a media file (or camera ' +
'device stream).',
py_modules=['hpose'],
package_data={'hpose': ['LICENSE']},
install_requires=requirements(),
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: ' +
'GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries' +
' :: Python Modules'],
keywords=['machine-learning', 'tensorflow', 'tflite',
'human-pose-detection', 'pose-detection',
'embedded-systems', 'rpi4', 'coral-dev-board'])