locimend/pyproject.toml

25 lines
536 B
TOML
Raw Normal View History

2021-05-05 23:54:48 +02:00
[tool.poetry]
name = "locimend"
version = "0.1.0"
description = "Machine learning algorithm to correct DNA sequencing errors"
authors = ["coolneng <akasroua@gmail.com>"]
license = "GPL-3.0-or-later"
[tool.poetry.dependencies]
2021-10-19 11:35:12 +02:00
python = "3.9.*"
2021-05-05 23:54:48 +02:00
tensorflow = "^2.4.1"
2021-05-31 12:30:57 +02:00
biopython = "^1.78"
2021-07-06 06:21:32 +02:00
fastapi = "^0.66.0"
uvicorn = "^0.14.0"
2021-05-05 23:54:48 +02:00
[tool.poetry.dev-dependencies]
isort = "^5.8.0"
pyflakes = "^2.3.1"
2021-07-06 19:52:35 +02:00
[tool.poetry.scripts]
api = "locimend.api:main"
2021-05-05 23:54:48 +02:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"