1
0
mirror of https://github.com/enpaul/kodak.git synced 2024-09-21 08:13:54 +00:00
kodak/pyproject.toml

34 lines
840 B
TOML
Raw Normal View History

2020-09-16 07:41:53 +00:00
[tool.poetry]
name = "imagemonk"
version = "0.0.0"
license = "MIT"
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
2020-09-16 07:41:53 +00:00
description = "HTTP server for uploading images and generating thumbnails"
repository = "https://github.com/mocproject/imagemonk/"
packages = [{include = "imagemonk"}]
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
bandit = "^1.6.2"
black = { git = "https://github.com/psf/black.git" }
blacken-docs = "^1.9.1"
2020-09-16 07:41:53 +00:00
ipython = "^7.10.2"
mypy = "^0.790"
2020-09-16 07:41:53 +00:00
pre-commit = "^2.1.1"
pre-commit-hooks = "^3.4.0"
pylint = "^2.6.0"
2020-09-16 07:41:53 +00:00
pytest = "^5.2.0"
pytest-cov = "^2.8.0"
reorder-python-imports = "^2.3.0"
2020-09-16 07:41:53 +00:00
safety = "^1.9.0"
sphinx = "^3.3.0"
sphinx-autodoc-typehints = "^1.11.1"
2020-09-16 07:41:53 +00:00
toml = "^0.10.1"
tox = "^3.20.0"
2020-09-16 07:41:53 +00:00
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"