-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 753 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 753 Bytes
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
import os
from setuptools import setup, find_packages
setup(
name='ipp-userinfo',
version='0.1',
description='IPP userinfo resource server',
author='Hoang Anh Nguyen',
author_email='[email protected]',
url='https://github.com/UQ-RCC/ipp-userinfo',
packages=find_packages(exclude=["test*"]),
# data_files=[
# ('conf', ['conf/ippuserinfo.conf'])
# ],
zip_safe=False,
install_requires=[
"fastapi==0.65.2",
"uvicorn==0.12.2",
"python-keycloak-client==0.2.3",
"cowsay==3.0",
"psycopg2-binary==2.8.6",
"sqlalchemy==1.3.20",
"sqlalchemy_json==0.4.0",
"shortuuid==1.0.1",
"python-multipart"
]
)