File: setup.py

package info (click to toggle)
gp-saml-gui 0.0~git20241120-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 316 kB
  • sloc: python: 944; makefile: 11
file content (26 lines) | stat: -rwxr-xr-x 822 bytes parent folder | download
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
#!/usr/bin/env python3

import sys
try:
    from setuptools import setup
except ImportError:
    from distutils.core import setup

########################################

setup(
    name="gp-saml-gui",
    version='0.1',
    description="Interactively authenticate to GlobalProtect VPNs that require SAML",
    long_description=open("README.md", encoding="utf-8").read(),
    long_description_content_type='text/markdown',
    author="Daniel Lenski",
    author_email="dlenski@gmail.com",
    license='GPL v3 or later',
    python_requires=">=3.5",
    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'])],
)