forked from mrlac1/test-backend-junior
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (58 loc) · 1.39 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import find_packages, setup
setup(
name="betonyou",
version="1.0.0",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"asyncstdlib~=3.9",
"apscheduler~=3.8",
"bcrypt==3.2.*",
"dependency_injector~=4.32",
"email-validator==1.1.*",
"fastapi==0.65.*",
# "gspread==3.6.*",
"pandas~=1.3",
"phonenumbers~=8.12",
"pyOpenSSL==20.0.*",
"requests==2.24.*",
"shortuuid==1.0.*",
"sqlalchemy_utils~=0.37",
"sqlalchemy~=1.4",
"uvicorn[standard]~=0.11",
"psycopg2-binary",
],
extras_require={
"ci": [
"apiritif",
"bandit",
"coverage",
"elmock",
"faker",
"flake8",
"freezegun",
"mypy", # linting on types
"pytest",
"yoyo-migrations",
],
"dev": [
"apiritif",
"bandit",
"black",
"coverage",
"elmock",
"faker",
"flake8",
"freezegun",
"isort",
"mypy", # linting on types
"pytest",
"requests-mock",
"requests-toolbelt",
"yoyo-migrations",
"dramatiq[watch]",
"debugpy",
],
},
)