-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 777 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 777 Bytes
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 setuptools import setup, find_packages
version = '0.0.22'
setup(
name='harry',
version=version,
description='harry converts HTTP Archives (.har) into JMeter test plans (.jmx).',
long_description=open('README.rst').read(),
author='Zach Munro-Cape',
author_email='zach.munrocape@gmail.com',
license='apache',
keywords=['jmeter', 'http archive', 'har2jmx', 'command line', 'cli'],
url='https://github.com/munrocape/harry',
packages=find_packages(),
package_data={
'harry': ['harpy/harpy/*', 'harry/*', 'harry/templates/*']
},
install_requires=[
'docopt>=0.6.1', 'jinja2>=2.7.3'
],
entry_points={
'console_scripts': [
'harry=harry.harry:main',
],
}
)