-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
62 lines (61 loc) · 1.87 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
setup(
name='volta',
version='0.7.2',
description='yandex package for mobile energy consumption measurements',
longer_description='''
yandex package for mobile energy consumption measurements
''',
maintainer='Alexey Lavrenuke (load testing)',
maintainer_email='[email protected]',
url='https://github.com/yandex-load/volta',
packages=find_packages(exclude=["tests", "tmp", "docs", "data"]),
python_requires='>=3',
install_requires=[
'tornado',
'pandas>=0.23.0',
'seaborn',
'numpy>=1.11.0',
'scipy',
'matplotlib',
'requests',
'pyserial',
'progressbar2',
'pyusb',
'pyyaml',
'cerberus<1.2',
'future',
'netort>=0.6.0',
'retrying'
],
setup_requires=[
],
tests_require=[
'pytest',
],
entry_points={
'console_scripts': [
'volta = volta.api.cli:main',
'volta-http = volta.api.http:main',
'volta-uploader = volta.core.postloader:main',
'volta-api = volta.api.manager:main'
],
},
license='MPLv2',
package_data={
'volta.providers.phones': ['binary/*.apk'],
'volta.core': ['config/*'],
},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Operating System :: POSIX',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Testing :: Traffic Generation',
'Programming Language :: Python :: 3',
],
use_2to3=False, )