Martin Willi 11b18f65b1 vici: Remove support for Python 2
Python 2 is dead and unmaintained for a while now. Time to stop carrying
on its support.
2022-12-12 14:38:09 +01:00

31 lines
1023 B
Python

from setuptools import setup
with open('README.rst') as file:
long_description = file.read()
setup(
name="vici",
version="@EGG_VERSION@",
description="Native Python interface for strongSwan's VICI protocol",
long_description=long_description,
author="strongSwan Project",
author_email="info@strongswan.org",
url="https://docs.strongswan.org/docs/5.9/plugins/vici.html",
license="MIT",
packages=["vici"],
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Security",
"Topic :: Software Development :: Libraries",
]
)