yandex-tank/setup.py

81 lines
2.7 KiB
Python
Raw Normal View History

2015-02-02 17:24:32 +00:00
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
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-02-04 13:12:41 +00:00
version='1.6.8',
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-04 13:12:41 +00:00
maintainer='Alexey Lavrenuke',
maintainer_email='direvius@gmail.com',
url='http://yandex.github.io/yandex-tank/',
2015-02-04 14:55:33 +00:00
packages=find_packages(),
2015-02-04 13:33:11 +00:00
install_requires=[
'psutil',
'ipaddr',
'lxml',
'progressbar',
2015-02-04 17:42:56 +00:00
'tornado',
'pyjade',
'tornadio2',
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 :: 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': [
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={},
# TODO: move them all to resources maybe
2015-02-04 15:29:56 +00:00
data_files=[
2015-02-04 18:23:33 +00:00
('/etc/yandex-tank', [
2015-02-05 12:00:46 +00:00
'config/00-base.ini',
]),
('/etc/yandex-tank/JMeter', [
'config/JMeter/jmeter_argentum.xml',
'config/JMeter/jmeter_var_template.xml',
'config/JMeter/jmeter_writer.xml',
]),
('/etc/yandex-tank/GraphiteUploader', [
'config/GraphiteUploader/graphite-js.tpl',
'config/GraphiteUploader/graphite.tpl',
]),
('/etc/yandex-tank/Monitoring', [
'config/Monitoring/agent.cfg',
'config/Monitoring/monitoring_default_config.xml',
]),
('/etc/yandex-tank/Phantom', [
'config/Phantom/phantom.conf.tpl',
'config/Phantom/phantom_benchmark_additional.tpl',
'config/Phantom/phantom_benchmark_main.tpl',
]),
('/etc/yandex-tank/TipsAndTricks', [
'config/TipsAndTricks/tips.txt',
]),
2015-02-04 15:29:56 +00:00
]
2015-02-04 13:22:21 +00:00
)