aboutsummaryrefslogtreecommitdiffstats
path: root/src/libcharon/plugins/vici/python/setup.py.in
diff options
context:
space:
mode:
authorMartin Willi <martin@revosec.ch>2015-02-25 16:18:29 +0100
committerMartin Willi <martin@revosec.ch>2015-03-18 13:59:14 +0100
commit1e2ec9f96a010e0e74d88ace7859ff5289736e49 (patch)
tree1e84379ad85240041e000dd6442e76eef6f0c7e2 /src/libcharon/plugins/vici/python/setup.py.in
parent2c8c52c4e2f36fe035cd23dda6d55280ed535fb9 (diff)
downloadstrongswan-1e2ec9f96a010e0e74d88ace7859ff5289736e49.tar.bz2
strongswan-1e2ec9f96a010e0e74d88ace7859ff5289736e49.tar.xz
vici: Generate a version specific setup.py for setuptools installation
Diffstat (limited to 'src/libcharon/plugins/vici/python/setup.py.in')
-rw-r--r--src/libcharon/plugins/vici/python/setup.py.in31
1 files changed, 31 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..9b8556595
--- /dev/null
+++ b/src/libcharon/plugins/vici/python/setup.py.in
@@ -0,0 +1,31 @@
+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",
+ "Topic :: Security",
+ "Topic :: Software Development :: Libraries",
+ )
+)