Skip to content
Snippets Groups Projects
pyproject.toml 645 B
Newer Older
[tool.poetry]
name = "bitia"
dilawar's avatar
dilawar committed
version = "0.2.0b1"
dilawar's avatar
dilawar committed
description = "BioInformatics Tool for Infrastructure Automation (BiTIA) CLI utility."
authors = ["Dilawar Singh <dilawar@subcom.tech>"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
requests = "^2.28.1"
typer = "^0.6.1"
rich = "^12.5.1"
dilawar's avatar
dilawar committed
validators = "^0.20.0"

[tool.poetry.scripts]
bitia = "bitia.__main__:app"

dilawar's avatar
dilawar committed
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
dilawar's avatar
dilawar committed
Sphinx = "^5.2.2"
myst-parser = "^0.18.1"
dilawar's avatar
dilawar committed
pylint = "^2.15.3"
mypy = "^0.981"
dilawar's avatar
dilawar committed
twine = "^4.0.1"
selva's avatar
selva committed
sphinx-tabs = "^3.4.1"
dilawar's avatar
dilawar committed

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"