File: setup.py

package info (click to toggle)
python-openidc-client 0.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: python: 742; makefile: 3
file content (30 lines) | stat: -rwxr-xr-x 981 bytes parent folder | download | duplicates (3)
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
29
30
#!/usr/bin/python -tt
from setuptools import find_packages, setup

exec(compile(open("openidc_client/release.py").read(),
             "openidc_client/release.py", 'exec'))

setup(
    name='openidc-client',
    version=VERSION,
    description='OpenID Connect Client with caching and token management',
    author='Patrick Uiterwijk',
    author_email='puiterwijk@fedoraproject.org',
    license='MIT',
    keywords='OpenID Connect Client',
    url='https://github.com/puiterwijk/python-openidc-client',
    packages=find_packages(exclude=["tests"]),
    include_package_data=True,
    install_requires=[
        'requests',
    ],
    classifiers=[
        'Development Status :: 4 - Beta',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 2.7',
        'Topic :: Internet :: WWW/HTTP',
        'Topic :: Software Development :: Libraries :: Python Modules',
    ],
    test_suite='tests',
)