-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.18 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
#!/usr/bin/env python
import beeswithmachineguns2
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('requirements.txt') as f:
required_packages = f.readlines()
setup(name='beeswithmachineguns2',
version=beeswithmachineguns2.VERSION,
description='A utility for arming (creating) many bees (micro EC2 instances) to attack (load test) '
'targets (web applications).',
author='Christopher Groskopf, radzhome',
author_email='cgroskopf@tribune.com',
url='http://github.com/radzhome/beeswithmachineguns2',
license='MIT',
packages=['beeswithmachineguns2'],
scripts=['bees2'],
install_requires=required_packages,
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
],
)