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
|
#!/usr/bin/env python3
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
if not sys.version_info[0] == 3:
sys.exit("Python 2.x is not supported; Python 3.x is required.")
########################################
setup(
name="gp-saml-gui",
version='0.1',
description="Interactively authenticate to GlobalProtect VPNs that require SAML",
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
author="Daniel Lenski",
author_email="dlenski@gmail.com",
license='GPL v3 or later',
install_requires=list(open("requirements.txt")),
url="https://github.com/dlenski/gp-saml-gui",
py_modules = ['gp_saml_gui'],
entry_points={ 'console_scripts': [ 'gp-saml-gui=gp_saml_gui:main' ] },
data_files=[('share/man/man8', ['gp-saml-gui.8'])],
)
|