This repository has been archived by the owner on Dec 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (47 loc) · 1.63 KB
/
setup.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup
from oidc_client import __license__, __version__, __author__, __description__
setup(
name="oidc_client",
version=__version__,
url="https://oidc-client.rtfd.io/",
project_urls={"Source": "https://github.com/CSCfi/oidc-client"},
license=__license__,
author=__author__,
author_email="",
description=__description__,
long_description="",
packages=["oidc_client", "oidc_client/config", "oidc_client/endpoints", "oidc_client/utils"],
package_data={"": ["*.ini"]},
entry_points={"console_scripts": ["start_oidc_client=oidc_client.app:main"]},
platforms="any",
classifiers=[ # Optional
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
# Pick your license as you wish
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
],
install_requires=["aiohttp", "gunicorn", "uvloop", "authlib", "aiocache"],
extras_require={
"test": [
"coverage==5.5",
"pytest<6.3",
"pytest-cov",
"coveralls",
"testfixtures",
"tox",
"flake8",
"flake8-docstrings",
"asynctest",
"aioresponses",
],
"docs": ["sphinx >= 1.4", "sphinx_rtd_theme"],
},
)