forked from mozilla-it/openvpn-netfilter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·32 lines (29 loc) · 1.22 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
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Copyright (c) 2016 Mozilla Corporation
# Author: [email protected]
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "openvpn-netfilter",
py_modules = ['netfilter_openvpn'],
version = "1.0.0",
author = "Guillaume Destuynder",
author_email = "[email protected]",
description = ("A plugin to OpenVPN to use netfilter/iptables rules per connected user"),
license = "MPL",
keywords = "mozdef client library",
url = "https://github.com/mozilla-it/openvpn-netfilter",
long_description = read('README.rst'),
requires = ['mozdef_client'],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Logging",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
],
)