-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
35 lines (31 loc) · 1 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
[tool.poetry]
name = "npg_langqc"
packages = [
{ include = "lang_qc" },
]
version = "2.4.0"
description = "FastAPI application for Long Read QC"
authors = ["Adam Blanchet", "Marina Gourtovaia <mg8@sanger.ac.uk>", "Kieron Taylor <kt19@sanger.ac.uk>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.10"
fastapi = { version = "^0.103", extras = ["standard"] }
uvicorn = { version = "^0.17", extras = ["standard"] }
cryptography = { version = "^40.0.2" }
SQLAlchemy = { version = "^2.0.1", extras = ["pymysql"] }
pydantic = "^2.4"
pydantic-settings = "^2.0"
[tool.poetry.dev-dependencies]
npg_id_generation = { git = "https://github.com/wtsi-npg/npg_id_generation.git", tag="5.0.1" }
black = "^22.3.0"
flake8 = "^4.0.1"
pytest = "^7.1.1"
fastapi = { extras = ["all"], version = "^0.103.0" }
alembic = "^1.13.0"
isort = { version = "^5.10.1", extras = ["colors"] }
pandas = "1.5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"