-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 707 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name="nanotrack",
version="0.2.0", # Updated version
author="RAGUL T, KARTHICK RAJA E",
author_email="[email protected], [email protected]",
description="A lightweight object detection and tracking package with added Kalman filter functionality",
url="https://github.com/ragultv/NanoTrack", # Update with your actual GitHub repo URL
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"numpy>=1.18.0",
"opencv-python>=4.5.0",
"torch>=1.7.0",
"torchvision>=0.8.0",
"scipy>=1.5.0",
# Add any new dependencies here, if applicable
],
)