forked from mozilla-services/loads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (35 loc) · 1.32 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
40
41
42
43
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
# You can obtain one at http://mozilla.org/MPL/2.0/.
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
with open(os.path.join(here, 'CHANGES.rst')) as f:
CHANGES = f.read()
requires = ['pyzmq', 'psutil', 'gevent', 'requests', 'ws4py', 'webtest',
'WSGIProxy2', 'konfig', 'irc']
setup(name='loads',
version='0.1',
packages=find_packages(),
include_package_data=True,
description='A distributed load testing tool.',
long_description=README + '\n\n' + CHANGES,
zip_safe=False,
license='APLv2.0',
classifiers=[
"Programming Language :: Python",
],
install_requires=requires,
author='Mozilla Services',
author_email='[email protected]',
url='https://github.com/mozilla-services/loads',
tests_require=['nose', 'mock', 'unittest2'],
test_suite='nose.collector',
entry_points="""
[console_scripts]
loads-broker = loads.transport.broker:main
loads-agent = loads.transport.agent:main
loads-runner = loads.main:main
""")