yandex-tank/setup.py

66 lines
2.6 KiB
Python
Raw Normal View History

2015-02-04 14:55:33 +00:00
from setuptools import setup, find_packages
2015-02-02 17:24:32 +00:00
2015-02-04 13:22:21 +00:00
setup(
name='yandextank',
2017-02-03 09:30:05 +00:00
version='1.8.33',
2015-02-04 13:12:41 +00:00
description='a performance measurement tool',
longer_description='''
2015-02-02 17:24:32 +00:00
Yandex.Tank is a performance measurement and load testing automatization tool.
2015-02-04 15:29:56 +00:00
It uses other load generators such as JMeter, ab or phantom inside of it for
load generation and provides a common configuration system for them and
analytic tools for the results they produce.
2015-02-02 17:24:32 +00:00
''',
2015-02-06 17:49:48 +00:00
maintainer='Alexey Lavrenuke (load testing)',
maintainer_email='direvius@yandex-team.ru',
2015-02-04 13:12:41 +00:00
url='http://yandex.github.io/yandex-tank/',
namespace_packages=["yandextank", "yandextank.plugins"],
packages=find_packages(exclude=["tests", "tmp", "docs", "data"]),
2015-02-04 13:33:11 +00:00
install_requires=[
2016-03-16 09:36:26 +00:00
'psutil>=1.2.1', 'requests>=2.5.1', 'paramiko>=1.16.0',
2016-11-16 18:19:58 +00:00
'pandas>=0.18.0', 'numpy>=1.11.0', 'future>=0.16.0',
2016-12-15 14:48:41 +00:00
'pip>=8.1.2',
'matplotlib>=1.5.3', 'seaborn>=0.7.1',
2015-02-04 13:33:11 +00:00
],
setup_requires=[
2016-12-27 13:08:02 +00:00
'pytest-runner', 'flake8',
],
tests_require=[
'pytest',
],
2015-02-04 13:12:41 +00:00
license='LGPLv2',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'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',
2015-04-03 12:35:06 +00:00
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
2015-02-04 13:12:41 +00:00
],
entry_points={
'console_scripts': [
2016-03-22 10:21:19 +00:00
'yandex-tank = yandextank.core.cli:main',
2016-10-25 17:18:30 +00:00
'yandex-tank-check-ssh = yandextank.common.util:check_ssh_connection',
2015-02-04 13:12:41 +00:00
],
2015-02-04 15:29:56 +00:00
},
package_data={
2015-02-09 15:26:14 +00:00
'yandextank.core': ['config/*'],
2016-01-15 10:56:01 +00:00
'yandextank.api': ['config/*'],
'yandextank.plugins.GraphiteUploader': ['config/*'],
'yandextank.plugins.JMeter': ['config/*'],
'yandextank.plugins.Monitoring': ['config/*'],
'yandextank.plugins.Phantom': ['config/*'],
'yandextank.plugins.TipsAndTricks': ['config/*'],
2015-10-26 15:52:35 +00:00
'yandextank.plugins.Pandora': ['config/*'],
2015-11-25 18:21:19 +00:00
'yandextank.plugins.Aggregator': ['config/*'],
2016-07-11 11:08:17 +00:00
'yandextank.plugins.Telegraf': ['config/*'],
2017-03-17 08:52:16 +00:00
'yandextank.plugins.Android': ['binary/*'],
},
2016-12-12 09:29:11 +00:00
use_2to3=False, )