-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
27 lines (24 loc) · 877 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='mmwave-gesture',
version='0.2',
description='mmWave gesture recognition',
url='http://github.com/f12markovic/mmwave-gesture-recognition',
author='Filip Markovic',
author_email='f12markovic@gmail.com',
license='MIT',
packages=find_packages(),
install_requires=['pyserial',
'PyQt5',
'pyqt5-tools',
'pyreadline',
'pynput',
'colorama',
'tqdm',
'pandas',
'numpy',
'multimethod',
'matplotlib',
'seaborn',
'scikit-learn',
'tensorflow==2.15'])