-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
33 lines (30 loc) · 892 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "tsuki"
version = "0.1.0"
description = ""
authors = ["Devansh3712 <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
pydantic = {extras = ["dotenv"], version = "^1.9.1"}
fastapi = "^0.79.0"
uvicorn = {extras = ["standard"], version = "^0.18.2"}
psycopg = {extras = ["binary"], version = "^3.0.16"}
email-validator = "^1.2.1"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.5"
google-api-python-client = "^2.55.0"
google-auth-httplib2 = "^0.1.0"
google-auth-oauthlib = "^0.5.2"
Jinja2 = "^3.1.2"
itsdangerous = "^2.1.2"
watchdog = "^2.1.9"
pytz = "^2022.1"
pandas = "^1.4.3"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
pyclean = "^2.2.0"
pre-commit = "^2.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"