-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.16 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
31
32
33
34
35
36
37
38
39
import io
import os
import sys
from loads import __version__
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf8') as f:
README = f.read()
with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf8') as f:
CHANGES = f.read()
extra_options = {
'packages': find_packages(),
}
setup(name='loads',
version=__version__,
description='Interactive tool for running loads-broker loadtests',
long_description=README + '\n\n' + CHANGES,
classifiers=['Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4'
],
keywords='[testing, load-testing, loadtest]',
author='Mozilla Cloud Services',
author_email='cloud-services-qa@mozilla.org',
license='MPL2',
include_package_data=True,
zip_safe=False,
entry_points='''
[console_scripts]
loads-cli = loads.main:main
''',
**extra_options
)