forked from aliesbelik/python-jtl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·30 lines (27 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env python
from distutils.core import setup
import os
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(name='python-jtl',
version='0.1.1',
description='Python module for parsing JMeter test results',
long_description=read('README.txt'),
keywords='jmeter jtl testing performance',
author='Victor Klepikovskiy',
author_email='[email protected]',
url='https://github.com/vklepikovskiy/python-jtl',
license='GPLv3',
packages=['tests'],
py_modules=['jtl'],
classifiers=[
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)