-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 899 Bytes
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 899 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
[tool.poetry]
name = "hackathon-starter"
version = "0.1.0"
description = "Baseline for hackhathon project"
authors = ["Grzegorz Kodrzycki <g.kodrzycki20@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
fastapi = "^0.111.0"
jinja2 = "^3.1.4"
psycopg2-binary = "^2.9.9"
pytest = "^8.2.1"
python-dotenv = "^1.0.1"
requests = "^2.32.2"
alembic = "^1.13.2"
pylint = "^3.2.6"
black = "^24.4.2"
isort = "^5.13.2"
pre-commit = "^3.8.0"
detect-secrets = "^1.5.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.pylint]
ignore = ["alembic","__init__.py"]
max-line-length = 120
[tool.pylint.messages_control]
disable = [
"missing-docstring",
"no-member",
"missing-class-docstring",
"missing-function-docstring",
"missing-timeout",
"too-few-public-methods",
]