-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 996 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 996 Bytes
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
[tool.poetry]
name = "kharon"
version = "0.1.0"
description = "Proxy server with authentication"
authors = ["Dref360 <frederic.branchaud.charron@gmail.com>"]
license = "ApacheV2"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.111.0"
uvicorn = "^0.27.1"
httpx = "^0.26.0"
python-dotenv = "^1.0.1"
python-jose = {extras = ["cryptography"], version = "^3.3.0"}
python-multipart = "^0.0.9"
requests = "^2.31.0"
authlib = "^1.3.0"
itsdangerous = "^2.1.2"
google-auth = "^2.28.0"
google-auth-oauthlib = "^1.2.0"
sqlmodel = "^0.0.16"
sshtunnel = "^0.4.0"
platformdirs = "^4.2.2"
names-generator = "^0.2.0"
typer = "^0.12.3"
rich = "^13.7.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.2"
black = "^24.2.0"
mypy = "^1.8.0"
flake8 = "^7.0.0"
pytest-cov = "^4.1.0"
pre-commit = "^3.8.0"
mkdocs-material = "^9.5.31"
[tool.black]
line-length = 100
[tool.isort]
line_length = 100
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"