diff options
author | Martin Willi <martin@revosec.ch> | 2015-03-18 15:03:28 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2015-03-18 15:03:28 +0100 |
commit | c5f4e7c69e0774154c6a1645e6c868f96fd27c1a (patch) | |
tree | 45740539414014888f2015bf799e24e20260b895 /src/libcharon/plugins/vici/python/setup.py.in | |
parent | c7bb1dc3d97ac9b36036b050714a3c4567da3290 (diff) | |
parent | 2185c29b6515a26f8a9a6ca7740e4dbcd46e6451 (diff) | |
download | strongswan-c5f4e7c69e0774154c6a1645e6c868f96fd27c1a.tar.bz2 strongswan-c5f4e7c69e0774154c6a1645e6c868f96fd27c1a.tar.xz |
Merge branch 'vici-python'
Introduce a Python Egg for the vici plugin, contributed by Björn Schuberg.
Diffstat (limited to 'src/libcharon/plugins/vici/python/setup.py.in')
-rw-r--r-- | src/libcharon/plugins/vici/python/setup.py.in | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/libcharon/plugins/vici/python/setup.py.in b/src/libcharon/plugins/vici/python/setup.py.in new file mode 100644 index 000000000..0e4ad8236 --- /dev/null +++ b/src/libcharon/plugins/vici/python/setup.py.in @@ -0,0 +1,34 @@ +from setuptools import setup + + +long_description = ( + "The strongSwan VICI protocol allows external application to monitor, " + "configure and control the IKE daemon charon. This python package provides " + "a native client side implementation of the VICI protocol, well suited to " + "script automated tasks in a reliable way." +) + +setup( + name="vici", + version="@EGG_VERSION@", + description="Native python interface for strongSwan VICI", + author="Bjorn Schuberg", + url="https://wiki.strongswan.org/projects/strongswan/wiki/Vici", + license="MIT", + packages=["vici"], + long_description=long_description, + include_package_data=True, + classifiers=( + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Intended Audience :: System Administrators", + "License :: OSI Approved :: MIT License", + "Natural Language :: English", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Topic :: Security", + "Topic :: Software Development :: Libraries", + ) +) |