-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (31 loc) · 1006 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
24
25
26
27
28
29
30
31
32
33
import setuptools
with open("README.md", 'r') as f:
long_description = f.read()
setuptools.setup(
name='pose_annotator',
version='0.0.2',
author='Jim Bohnslav',
author_email='jbohnslav@gmail.com',
description='Keypoint annotation GUI',
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
entry_points={
'console_scripts':[
'pose_annotator = pose_annotator.gui.main:run']
},
python_requires='>=3.6',
install_requires=['matplotlib',
'numpy',
'omegaconf>=2.0',
'opencv-python-headless',
'pandas',
'PySide2>=5.15',
'vidio>=0.0.3'],
url='https://github.com/jbohnslav/pose_annotator'
)