forked from DeloitteHux-Old/beeswithmachineguns
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup, find_packages
# work around a bug in nose setuptools integration
from multiprocessing import util
setup(name='beeswithmachineguns',
version='0.1.7.9',
description='A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) targets (web applications).',
author='Christopher Groskopf',
author_email='[email protected]',
url='http://github.com/Magentic/python-libs',
license='MIT',
packages=['beeswithmachineguns'],
scripts=['bees', 'siege_calc', 'siege_graph', 'wideload_wrap', 'wideload_calc'],
setup_requires=['nose'],
test_suite='nose.collector',
install_requires=[
'boto>=2.6',
'paramiko>=1.8'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Testing :: Traffic Generation',
'Topic :: Utilities',
],
)