1
0
mirror of https://github.com/enpaul/keyosk.git synced 2024-07-08 19:43:49 +00:00
keyosk/pyproject.toml
Ethan Paul 227f1e7c18 Update toxfile to pin all dependencies to locked versions
Stop-gap until I can figure out how to create a tox env from the lockfile
Add missing pytest-cov dev dependency
Fix py3.6 sqlite compatibility error with pathlib
2020-02-25 00:00:50 -05:00

37 lines
875 B
TOML

[tool.poetry]
name = "keyosk"
version = "0.1.0-alpha-1"
description = "REST API for issuing and managing JSON web tokens"
authors = ["Ethan Paul <e@enp.one>"]
license = "MIT"
repository = "https://github.com/enpaul/keyosk/"
packages = [{include = "keyosk"}]
[tool.poetry.dependencies]
python = "^3.6"
toml = "^0.10.0"
peewee = "^3.13.1"
pymysql = "^0.9.3"
marshmallow = "^3.5.0"
dataclasses = {version = "^0.7", python = "3.6"}
passlib = "^1.7.2"
[tool.poetry.dev-dependencies]
tox = "^3.14.5"
sphinx = "^2.4.2"
sphinx-autodoc-typehints = "^1.10.3"
reorder-python-imports = "^1.9.0"
bandit = "^1.6.2"
ipython = "^7.12.0"
pre-commit = "^2.1.0"
mypy = "^0.761"
pytest = "^5.3.5"
black = {version = "^19.10b0", allow-prereleases = true}
pylint = "2.3.1"
astroid = "2.2.5"
pytest-cov = "^2.8.1"
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"