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',
|
2015-10-30 11:03:04 +00:00
|
|
|
version='1.7.17',
|
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/',
|
2015-02-09 15:26:14 +00:00
|
|
|
packages=find_packages(exclude=["tests"]),
|
2015-02-04 13:33:11 +00:00
|
|
|
install_requires=[
|
2015-10-29 12:56:02 +00:00
|
|
|
'psutil>=1.2.1',
|
2015-02-04 13:33:11 +00:00
|
|
|
'ipaddr',
|
|
|
|
'progressbar',
|
2015-06-15 13:54:32 +00:00
|
|
|
'requests',
|
2015-02-04 13:33:11 +00:00
|
|
|
],
|
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': [
|
2015-02-04 14:55:33 +00:00
|
|
|
'yandex-tank = yandextank.core.cli:main',
|
2015-02-04 13:12:41 +00:00
|
|
|
],
|
2015-02-04 15:29:56 +00:00
|
|
|
},
|
2015-02-06 13:35:16 +00:00
|
|
|
package_data={
|
2015-02-09 15:26:14 +00:00
|
|
|
'yandextank.core': ['config/*'],
|
2015-02-06 13:35:16 +00:00
|
|
|
'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-02-06 13:35:16 +00:00
|
|
|
},
|
2015-04-03 12:35:06 +00:00
|
|
|
use_2to3=True,
|
2015-02-04 13:22:21 +00:00
|
|
|
)
|