-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
46 lines (44 loc) · 1.31 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
44
45
46
from setuptools import setup
import os
import version
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='mqtt-malaria',
url="https://github.com/etactica/mqtt-malaria",
maintainer="eTactica ehf. - Software Department",
maintainer_email="technical@etactica.com",
version=version.get_git_version(),
description="Attacking MQTT systems with Mosquittos",
long_description=read('README.md'),
license="License :: OSI Approved :: BSD License",
scripts=["malaria"],
packages=[
'beem',
'beem.cmds'
],
include_package_data=True,
zip_safe=False,
install_requires=[
'paho-mqtt>=1.1',
'fusepy'
],
tests_require=[
'fabric',
'fabtools',
'nose',
'coverage'
],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Programming Language :: Python",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Topic :: System :: Benchmark",
"Topic :: System :: Networking"
]
)