forked from mediatechnologycenter/AvatarForge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (32 loc) · 1020 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="avatar_backend_api",
description="The Avatar backend API",
version="0.1.0",
url="https://gitlab.ethz.ch/mtc/video-synthesis/mtc-avatar-api",
author="Media Technology Center (ETH Zürich)",
author_email="[email protected]",
package_data={
"avatar_backend_api": ["py.typed"],
},
packages=[
"avatar_backend_api",
"avatar_backend_api.clients",
"avatar_backend_api.models",
"avatar_backend_api.background_tools",
],
install_requires=[
"mtc_api_utils @ git+https://github.com/mediatechnologycenter/[email protected]",
"tinydb~=4.7.0",
"python-multipart~=0.0.5",
"httpx~=0.23.1",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
]
)