-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (54 loc) · 1.08 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
[tool.poetry]
name = "genotype-api"
version = "3.0.20"
description = "Genotype-api"
authors = ["Christian Oertlin <c.oertlin@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
aiofiles = "*"
bcrypt = "*"
bump2version = "*"
click = "*"
coloredlogs = "*"
cryptography = "*"
email-validator = "*"
fastapi = "*"
google-auth = "*"
gunicorn = "*"
httptools = "*"
numpy = "*"
openpyxl = "*"
passlib = "*"
pydantic = "*"
pydantic-settings = "*"
python = "^3.12"
python-dotenv = "*"
python-jose = {extras = ["cryptography"], version = "*"}
python-multipart = "*"
pyyaml = "*"
requests = "*"
sqlalchemy = {extras = ["asyncio"], version = "*"}
sqlalchemy-utils = "*"
starlette = "*"
uvicorn = "*"
uvloop = "*"
aiomysql = "*"
pytest-asyncio = "*"
tenacity = "*"
[tool.poetry.group.dev.dependencies]
coveralls = "*"
pre-commit = "*"
pytest-cov = "*"
pytest = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 100
target-version = "py311"
exclude = ["alembic"]
ignore = ["E501"]