-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (37 loc) · 1.09 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
# SPDX-License-Identifier: Apache-2.0
# © 2023 ETH Zurich and other contributors, see AUTHORS.txt for details
from distutils.core import setup
setup(
name='mtc_api_utils',
version='0.5.0',
description='Commonly used MTC API utils',
url='https://gitlab.ethz.ch/mtc/libraries/api-utils',
author="Media Technology Center (ETH Zürich)",
author_email='[email protected]',
package_data={
"mtc_api_utils": ["py.typed"],
},
packages=[
"mtc_api_utils",
"mtc_api_utils.cli_wrappers",
"mtc_api_utils.clients",
],
install_requires=[
"fastapi==0.95.0",
"python-multipart==0.0.6",
"uvicorn==0.21.1",
"gunicorn==20.1.0",
"debugpy==1.6.6",
"firebase_admin==6.1.0",
"httpx==0.23.3",
"slack-sdk==3.20.2",
"tqdm==4.65.0",
],
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
]
)