yandex-tank/setup.py

52 lines
1.8 KiB
Python
Raw Normal View History

2015-02-02 17:24:32 +00:00
#!/usr/bin/env python
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-03-17 12:52:09 +00:00
version='1.7.9',
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=[
'psutil',
'ipaddr',
'progressbar',
],
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',
],
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
},
package_data={
2015-02-09 15:26:14 +00:00
'yandextank.core': ['config/*'],
'yandextank.plugins.GraphiteUploader': ['config/*'],
'yandextank.plugins.JMeter': ['config/*'],
'yandextank.plugins.Monitoring': ['config/*'],
'yandextank.plugins.Phantom': ['config/*'],
'yandextank.plugins.TipsAndTricks': ['config/*'],
},
2015-02-04 13:22:21 +00:00
)