-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1003 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="okdata-permission-api",
version="0.2.0",
author="Origo Dataplattform",
author_email="[email protected]",
description="API for managing permissions to okdata resources",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.oslo.kommune.no/origo-dataplatform/okdata-permission-api",
packages=find_packages(),
install_requires=[
"aws-xray-sdk",
"boto3",
"cryptography",
"fastapi>=0.109.2",
"mangum>=0.10.0",
"okdata-aws>=2.1,<3",
"okdata-resource-auth>=0.1.4",
"pydantic[email]~=1.10.0",
"pyjwt>=2.5,<3",
# Version 2.13.2 and up breaks our custom `TeamsKeycloakAdmin` class
# and needs more work...
"python-keycloak==2.13.1",
"pytz",
"requests",
],
)