-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
45 lines (40 loc) · 1.23 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
#!/usr/bin/env python
from setuptools import setup
from firelet.flcore import __version__
CLASSIFIERS = map(str.strip,
"""Environment :: Console
Environment :: Web Environment
License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Operating System :: POSIX :: Linux
Programming Language :: Python
Topic :: Security
""".splitlines())
setup(
name="firelet",
version = __version__,
author = "Federico Ceratto",
author_email = "[email protected]",
description = "Distributed firewall management",
license = "GPLv3+",
url = "http://www.firelet.net/",
long_description = """Firelet is a distributed firewall management tool. It provides a CLI and a web-based interface.""",
classifiers=CLASSIFIERS,
install_requires = [
'bottle',
'pygraphviz',
],
packages = ["firelet"],
platforms=['Linux'],
package_data={'': ['test/*',
'views/*',
'static/*']},
entry_points = {
'console_scripts': [
'firelet_c = firelet.cli:main',
'fireletd = firelet.fireletd:main',
],
},
scripts = ([]),
test_suite='nose.collector',
tests_require=['nose'],
)