-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (33 loc) · 1.31 KB
/
setup.py
File metadata and controls
34 lines (33 loc) · 1.31 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
from distutils.core import setup
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name = 'PytrackX',
packages = ['PytrackX'],
version = '0.7', # Ideally should be same as your GitHub release tag varsion
description = 'A general python framework for visual object tracking.',
long_description= long_description,
long_description_content_type="text/markdown",
author = 'Sriram Kannan, Swetha Saseendran',
author_email = 'swethasaseendran4@gmail.com',
url = 'https://github.com/swetha4444/PyTrackX',
license='MIT',
project_urls={
"Bug Tracker": "https://github.com/swetha4444/PyTrackX/issues",
},
install_requires=['numpy>=1.11',
'matplotlib>=1.5',
'pandas>=1',
'opencv-python >= 4.4.0.44',
'scipy >= 1.5.4',
'mediapipe >= 0.8.4.2',
],
download_url= 'https://github.com/swetha4444/PyTrackX/archive/refs/tags/0.7.tar.gz',
keywords = ['yolo', 'mediapipe','object detection','object tracking'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)