mirror of
https://github.com/valitydev/yandex-tank.git
synced 2024-11-06 02:15:22 +00:00
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='yandextank',
|
|
version='1.6.8',
|
|
description='a performance measurement tool',
|
|
longer_description='''
|
|
Yandex.Tank is a performance measurement and load testing automatization tool.
|
|
It uses other load generators 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 that they produce.
|
|
''',
|
|
maintainer='Alexey Lavrenuke',
|
|
maintainer_email='direvius@gmail.com',
|
|
url='http://yandex.github.io/yandex-tank/',
|
|
packages=['yandextank'],
|
|
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 :: MacOS :: MacOS X',
|
|
'Operating System :: Microsoft :: Windows',
|
|
'Operating System :: POSIX',
|
|
'Topic :: Software Development :: Quality Assurance',
|
|
'Topic :: Software Development :: Testing',
|
|
'Topic :: Software Development :: Testing :: Traffic Generation',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'yandex-tank = yandextank.core.entry:main',
|
|
],
|
|
)
|