-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.33 KB
/
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
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
60
61
[tool.poetry]
name = "gs-interview"
version = "1.2.0"
description = "Grid Status Full Stack Technical Interview"
authors = ["Max Kanter <kmax12@gmail.com>"]
license = "proprietary"
readme = "README.md"
packages = [{include = "gs_interview"}]
[tool.poetry.dependencies]
async-lru = "^2.0.4"
python = "^3.10"
aioodbc = "0.5.0"
fastapi = "^0.104.1"
sqlalchemy = "2.0.28"
asyncpg = "0.29.0"
pydantic = "^2.4.2"
uvicorn = "^0.23.2"
greenlet = "1.1.3"
requests = "^2.28.2"
pandas = "^1.5.3"
pendulum = "^2.1.2"
alembic = "^1.10.4"
svix = "^0.84.1"
pyjwt = {extras = ["crypto"], version = "^2.7.0"}
orjson = "^3.9.2"
pydantic-settings = "^2.0.3"
[tool.poetry.dev-dependencies]
absolufy-imports = "^0.3.1"
black = {extras = ["jupyter"], version = "^24.2.0"}
bandit = {extras = ["toml"], version = "^1.7.5"}
nest-asyncio = "^1.6.0"
safety = "^2.3.5"
pre-commit = "^3.6.2"
ruff = {extras = ["jupyter"], version = "^0.3.2"}
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 88
target-version = ['py311']
[tool.ruff]
line-length = 88
[tool.ruff.lint]
ignore = []
isort.known-first-party = ["gs_interview"]
select = ["F", "E", "W", "Q", "I001"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "E402", "F403", "F405", "E501", "I001"]
[tool.bandit]
exclude_dirs = []
skips = ["B101", "B110", "B113"]