1
|
|
"""
|
2
|
|
Copyright 2015 BlazeMeter Inc.
|
3
|
|
|
4
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
5
|
|
you may not use this file except in compliance with the License.
|
6
|
|
You may obtain a copy of the License at
|
7
|
|
|
8
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
9
|
|
|
10
|
|
Unless required by applicable law or agreed to in writing, software
|
11
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
|
See the License for the specific language governing permissions and
|
14
|
|
limitations under the License.
|
15
|
|
"""
|
16
|
0
|
import pkg_resources
|
17
|
0
|
from setuptools import setup
|
18
|
|
|
19
|
0
|
from bzt.resources.version import VERSION
|
20
|
|
|
21
|
0
|
with open('requirements.txt') as _f:
|
22
|
0
|
content = _f.read()
|
23
|
0
|
requires = [str(req) for req in pkg_resources.parse_requirements(content)]
|
24
|
|
|
25
|
0
|
setup(
|
26
|
|
name="bzt",
|
27
|
|
version=VERSION,
|
28
|
|
description='Taurus Tool for Continuous Testing',
|
29
|
|
long_description=open('README.md').read(),
|
30
|
|
long_description_content_type='text/markdown',
|
31
|
|
author='Andrey Pokhilko',
|
32
|
|
author_email='andrey@blazemeter.com',
|
33
|
|
url='http://gettaurus.org/',
|
34
|
|
download_url='http://gettaurus.org/docs/DeveloperGuide/#Python-Egg-Snapshots',
|
35
|
|
license='Apache 2.0',
|
36
|
|
install_requires=requires,
|
37
|
|
packages=['bzt', 'bzt.engine', 'bzt.jmx', 'bzt.modules', 'bzt.resources', 'bzt.resources.version',
|
38
|
|
'bzt.modules.java', 'bzt.modules.apiritif', 'bzt.modules.python'],
|
39
|
|
entry_points={
|
40
|
|
'console_scripts': [
|
41
|
|
'bzt=bzt.cli:main',
|
42
|
|
'jmx2yaml=bzt.jmx2yaml:main',
|
43
|
|
'soapui2yaml=bzt.soapui2yaml:main',
|
44
|
|
'swagger2yaml=bzt.swagger2yaml:main',
|
45
|
|
],
|
46
|
|
},
|
47
|
|
include_package_data=True,
|
48
|
|
package_data={
|
49
|
|
"bzt": [],
|
50
|
|
},
|
51
|
|
|
52
|
|
classifiers=[
|
53
|
|
'Development Status :: 5 - Production/Stable',
|
54
|
|
|
55
|
|
'Topic :: Software Development :: Quality Assurance',
|
56
|
|
'Topic :: Software Development :: Testing',
|
57
|
|
'Topic :: Software Development :: Testing :: Traffic Generation',
|
58
|
|
|
59
|
|
'License :: OSI Approved :: Apache Software License',
|
60
|
|
|
61
|
|
'Operating System :: Microsoft :: Windows',
|
62
|
|
'Operating System :: MacOS',
|
63
|
|
'Operating System :: POSIX :: Linux',
|
64
|
|
|
65
|
|
'Programming Language :: Python :: 3.6',
|
66
|
|
'Programming Language :: Python :: 3.7',
|
67
|
|
],
|
68
|
|
python_requires='>=3.5',
|
69
|
|
)
|