forked from Nightwish555/perf-orange-cat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 949 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
# # _*_ coding: utf-8 _*_
from setuptools import setup, find_packages
setup(
name='performancetest',
version='0.0.18',
url='https://github.com/1033866383/perf-orange-cat',
author='bozhou.fan',
author_email='[email protected]',
description='Android, IOS app_performance',
packages=find_packages(),
install_requires=[
"psutil", "airtest", "fastapi", "tidevice", "func-timeout", "sqlalchemy", "sqlalchemy-serializer", "uvicorn"
],
include_package_data=True, # 这里添加 include_package_data 参数
package_data={
'performancetest': ['web/test_result/*']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
],
)