-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
48 lines (45 loc) · 931 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os
from setuptools import find_packages, setup
deps = [
"aiofiles",
"authlib",
"boto3",
"click",
"click-aliases",
"colorama",
"cryptography",
"databases[postgresql]",
"elasticsearch>=7.0.0,<8.0.0",
"fastapi",
"fastapi-users",
"fastapi-contrib",
"ffmpeg-python",
"gunicorn",
"jinja2",
"minio",
"psycopg2-binary",
"pydantic",
"pyjwt",
"requests",
"requests-toolbelt",
"sqlalchemy",
"starlette",
"tqdm",
"uvicorn",
]
setup(
name="workspacesio",
version="0.1.0",
script_name="setup.py",
python_requires=">3.7",
zip_safe=False,
install_requires=deps,
include_package_data=True,
packages=find_packages(exclude=["test"]),
entry_points={
"console_scripts": [
"wio=workspacesio.cli:cli",
"workspaces-create-tables=workspacesio.dev_cli:main",
],
},
)