-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
39 lines (30 loc) · 1.38 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
#!/usr/bin/env python
"""
This is the setup script of py-pf. You can install the module by running it with
the 'install' command:
# python setup.py install
or run unit tests by calling it with the 'test' command:
# python setup.py install
"""
from distutils.core import setup
from pf.tests import TestCommand
__author__ = "Daniele Mazzocchio <danix@kernel-panic.it>"
__version__ = "0.2.3"
__date__ = "Dec 22, 2023"
setup(name = "py-pf",
version = __version__,
author = "Daniele Mazzocchio",
author_email = "danix@kernel-panic.it",
url = "http://www.kernel-panic.it/software/py-pf/",
download_url = "https://github.com/dotpy/py-pf/archive/refs/tags/{}.tar.gz".format(__version__),
packages = ["pf", "pf.tests"],
cmdclass = {"test": TestCommand},
license = "OSI-Approved :: BSD License",
description = "Pure-Python module for managing OpenBSD's Packet Filter",
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: POSIX :: BSD :: OpenBSD",
"Programming Language :: Python",
"Topic :: System :: Networking :: Firewalls"])