jtftp/pyproject.toml

27 lines
537 B
TOML

[tool.poetry]
name = "jtftp"
version = "0.1.0"
description = "Jeff's TFTP"
authors = ["Jeffrey C. Ollie <jeff@ocjtech.us>"]
[tool.poetry.dependencies]
python = "^3.10"
arrow = "^1.2.2"
aiofiles = "^0.8.0"
[tool.poetry.dev-dependencies]
black = "^22.6.0"
flake8 = "^4.0.1"
flake8-bugbear = "^22.6.22"
hypothesis = "^6.48.2"
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
pytest-cov = "^3.0.0"
[tool.poetry.scripts]
serve = 'examples.main:serve'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"