-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (50 loc) · 2.02 KB
/
setup.py
File metadata and controls
52 lines (50 loc) · 2.02 KB
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
45
46
47
48
49
50
51
52
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="golftracker",
version="3.0",
description="Use open cv to detect critical elements in a golf swing.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
],
url="https://github.com/sanjeevs/golftracker",
author="Sanjeev Singh",
author_email="snjvsingh123@gmail.com",
entry_points={
'console_scripts' : [
'create_swing_db=scripts.create_swing_db:main',
'dump_swing_db=scripts.dump_swing_db:main',
'load_swing_db=scripts.load_swing_db:main',
'display_golf_swing=scripts.display_golf_swing:main',
'label_club_head=scripts.label_club_head:main',
'label_golf_poses=scripts.label_golf_poses:main',
'resize_in_video=scripts.resize_in_video:main',
'track_golf_club=scripts.track_golf_club:main',
'create_posemodel=scripts.utils.create_posemodel:main',
'train_posemodel=scripts.utils.train_posemodel:main',
'predict_posemodel=scripts.utils.predict_posemodel:main',
'create_test_image=scripts.utils.create_test_image:main',
'create_test_db=scripts.utils.create_test_db:main',
'tune_line_det=scripts.tune_line_det:main',
'plot_swing_points=scripts.plot_swing_points:main'
]
},
install_requires = ['opencv-contrib-python', 'protobuf', 'mediapipe',
'numpy', 'scikit-learn', 'pandas'],
packages = find_packages(),
extras_require = {
"dev": [
"pytest >= 3.7",
"check-manifest",
"twine",
],
}
)