forked from smart-test-ti/SoloX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 873 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
#!/usr/bin/env python
# coding: utf-8
#
# Licensed under MIT
#
import setuptools
from solox import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
install_requires=['flask>=2.0.1', 'requests>=2.28.2', 'logzero', 'Flask-SocketIO==4.3.1', 'fire',
'python-engineio==3.13.2', 'python-socketio==4.6.0', 'Werkzeug==2.0.3',
'Jinja2==3.0.1','tidevice==0.9.7', 'tqdm', 'xlwt','pyfiglet','psutil',
'opencv-python'],
version=__version__,
long_description=long_description,
python_requires='>=3.10',
long_description_content_type="text/markdown",
description="SoloX - Real-time collection tool for Android/iOS performance data.",
packages=setuptools.find_namespace_packages(include=["solox", "solox.*"], ),
include_package_data=True
)