Annotation of embedaddon/strongswan/src/libcharon/plugins/vici/python/setup.py.in, revision 1.1.1.1

1.1       misho       1: from setuptools import setup
                      2: 
                      3: with open('README.rst') as file:
                      4:     long_description = file.read()
                      5: 
                      6: setup(
                      7:     name="vici",
                      8:     version="@EGG_VERSION@",
                      9:     description="Native Python interface for strongSwan's VICI protocol",
                     10:     long_description=long_description,
                     11:     author="strongSwan Project",
                     12:     author_email="info@strongswan.org",
                     13:     url="https://wiki.strongswan.org/projects/strongswan/wiki/Vici",
                     14:     license="MIT",
                     15:     packages=["vici"],
                     16:     include_package_data=True,
                     17:     classifiers=(
                     18:         "Development Status :: 5 - Production/Stable",
                     19:         "Intended Audience :: Developers",
                     20:         "Intended Audience :: System Administrators",
                     21:         "License :: OSI Approved :: MIT License",
                     22:         "Natural Language :: English",
                     23:         "Programming Language :: Python :: 2.7",
                     24:         "Programming Language :: Python :: 3.2",
                     25:         "Programming Language :: Python :: 3.3",
                     26:         "Programming Language :: Python :: 3.4",
                     27:         "Programming Language :: Python :: 3.5",
                     28:         "Programming Language :: Python :: 3.6",
                     29:         "Programming Language :: Python :: 3.7",
                     30:         "Programming Language :: Python :: 3.8",
                     31:         "Topic :: Security",
                     32:         "Topic :: Software Development :: Libraries",
                     33:     )
                     34: )

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>