forked from duo-labs/sharedsignals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 922 Bytes
/
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
#!/usr/bin/env python
# Copyright (c) 2021 Cisco Systems, Inc. and its affiliates
# All rights reserved.
# Use of this source code is governed by a BSD 3-Clause License
# that can be found in the LICENSE file.
from distutils.core import setup
setup(
name="py-openid-sse",
version="1.0",
description="Python implementation of OpenID's Shared Signals and Events (SSE) Framework",
author="Duo Security, Inc.",
author_email="[email protected]",
url="https://github.com/duosecurity/py-openid-sse",
packages=["openid_sse"],
license="BSD",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
],
keywords=[
"openid",
"sse",
"caep",
"security",
"shared signals and events",
"continuous access evaluation profile"
],
install_requires=[
"pydantic",
]
)