-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
81 lines (73 loc) · 2.07 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import sys
#if not hasattr(sys, 'version_info') or sys.version_info < (2, 6, 0, 'final'):
# raise SystemExit("Firebat requires Python 2.7 or later.")
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from firebat import __version__
install_requirements = [
'python-daemon',
'PyYAML',
'jinja2',
'progressbar',
'simplejson',
'validictory',
'requests',
#'pyzmq',
#'numpy',
]
with open("README.rst") as f:
README = f.read()
with open("docs/changelog.rst") as f:
CHANGES = f.read()
setup(
name='firebat-console',
version=__version__,
author='Gregory Komissarov',
author_email='[email protected]',
description='Console helpers for Phantom load tool',
long_description=README + '\n' + CHANGES,
license='BSD',
url='https://github.com/greggyNapalm/firebat-console',
keywords=['phantom', 'firebat'],
scripts=[
"bin/fire",
"bin/daemon_fire",
"bin/fire-chart",
],
packages=[
'firebat',
'firebat.console',
],
package_data={
"firebat": [
"console/defaults.yaml",
"console/phantom.conf.jinja",
"result_markdown/js/firebat/*.js",
"result_markdown/js/*.js",
"result_markdown/img/*.png",
"result_markdown/img/*.ico",
"result_markdown/css/*.css",
"result_markdown/less/*.less",
"result_markdown/less/*.less",
"result_markdown/*.jinja",
],
},
zip_safe=False,
install_requires=install_requirements,
tests_require=['nose'],
test_suite='nose.collector',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
"Topic :: Software Development :: Testing :: Traffic Generation",
],
)