keyosk/pyproject.toml

45 lines
1.2 KiB
TOML
Raw Normal View History

2020-02-19 03:05:32 +00:00
[tool.poetry]
name = "keyosk"
version = "0.1.0-alpha-1"
2020-03-13 03:08:52 +00:00
description = "Simple JWT application for HTTP-based microservices"
authors = ["Ethan Paul <ethan.paul@enp.one>"]
2020-02-19 03:05:32 +00:00
license = "MIT"
2020-02-19 04:02:02 +00:00
repository = "https://github.com/enpaul/keyosk/"
2020-03-13 03:08:52 +00:00
homepage = "https://github.com/enpaul/keyosk/"
documentation = "https://github.com/enpaul/keyosk/"
2020-02-19 04:02:02 +00:00
packages = [{include = "keyosk"}]
2020-03-13 03:08:52 +00:00
keywords = ["jwt", "rest", "flask", "docker", "microservice", "http"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Framework :: Flask",
"License :: OSI Approved :: MIT License",
"Natural Language :: English"
]
2020-02-19 03:05:32 +00:00
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = {version = "^0.7", python = "3.6"}
marshmallow = "^3.5.0"
passlib = "^1.7.2"
peewee = "^3.13.1"
pymysql = "^0.9.3"
toml = "^0.10.0"
2020-02-19 03:05:32 +00:00
[tool.poetry.dev-dependencies]
2020-02-19 04:02:02 +00:00
bandit = "^1.6.2"
black = {version = "^19.10b0", allow-prereleases = true}
2020-02-19 04:02:02 +00:00
ipython = "^7.12.0"
mypy = "^0.761"
pre-commit = "^2.1.0"
2020-02-19 04:02:02 +00:00
pytest = "^5.3.5"
pytest-cov = "^2.8.1"
pylint = "^2.4.4"
reorder-python-imports = "^1.9.0"
sphinx = "^2.4.2"
sphinx-autodoc-typehints = "^1.10.3"
tox = "^3.14.5"
2020-02-19 03:05:32 +00:00
[build-system]
requires = ["poetry>=1.0.0"]
build-backend = "poetry.masonry.api"