-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
61 lines (52 loc) · 2.65 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
setup(
name='VehicleDetectionTracker',
version='0.0.32',
packages=find_packages(),
include_package_data=True,
package_data={'VehicleDetectionTracker': ['data/*']},
install_requires=[
'opencv-python==4.8.1.78',
'imutils==0.5.4',
'ultralytics==8.0.145',
'tensorflow==2.14.0'
],
author='Sergio Sánchez Sánchez',
author_email='[email protected]',
description='VehicleDetectionTracker 🚗: Effortlessly track and detect vehicles in images and videos with advanced algorithms. 🚙🚕 Boost your computer vision project!" 🔍📹',
url='https://github.com/sergio11/vehicle_detection_tracker',
keywords=['Vehicle tracking', 'Object detection', 'Computer vision', 'Video processing', 'Traffic analysis', 'Traffic management', 'Automated surveillance', 'Vehicle recognition', 'Video analysis', 'Machine learning'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.7, <4',
long_description = open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown'
)
"""
VehicleDetectionTracker Setup
This setup script configures the installation of the VehicleDetectionTracker package. VehicleDetectionTracker is a Python package for effortless vehicle tracking and detection in images and videos using advanced algorithms. Boost your computer vision project with this package.
Project Details:
- Name: VehicleDetectionTracker
- Version: 0.0.32
- Author: Sergio Sánchez Sánchez
- Email: [email protected]
- Description: VehicleDetectionTracker is a package that enables effortless tracking and detection of vehicles in images and videos using advanced algorithms. Ideal for enhancing your computer vision project with vehicle recognition and tracking.
- Repository: https://github.com/sergio11/vehicle_detection_tracker
- Keywords: Vehicle tracking, Object detection, Computer vision, Video processing, Traffic analysis, Traffic management, Automated surveillance, Vehicle recognition, Video analysis, Machine learning
Requirements:
- opencv-python-headless 4.8.1.78
- imutils 0.5.4
- ultralytics 8.0.145
Development Status: Beta
License: MIT License
Python Version Compatibility: >=3.7, <4
For more details, please refer to the project's README.md file.
"""