-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 891 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 891 Bytes
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="driver-distraction-and-drowsiness-detection-system",
version="0.1.0",
description="Sürücü uykululuk tespiti için gerçek zamanlı bir sistem",
author="Samet",
author_email="samet-gunduz@hotmail.com",
packages=find_packages(),
include_package_data=True,
install_requires=[
"numpy>=1.20.0",
"opencv-python>=4.5.5.64",
"PyYAML>=6.0",
"matplotlib>=3.5.1",
"mediapipe>=0.8.9",
"scipy>=1.7.3",
"torch>=1.10.0",
"torchvision>=0.11.1",
"tqdm>=4.62.3",
"argparse>=1.4.0",
"pandas>=1.3.4",
"seaborn>=0.11.2",
],
entry_points={
'console_scripts': [
'drowsiness-detection=src.main:main',
],
},
python_requires='>=3.7',
)