2020-02-19 03:05:32 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "keyosk"
|
|
|
|
version = "0.1.0"
|
2020-11-26 06:22:13 +00:00
|
|
|
license = "GPL-3.0-only"
|
|
|
|
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
|
|
|
|
description = "Simple authentication provider for OAuth2 and OpenID-Connect systems"
|
2020-02-19 04:02:02 +00:00
|
|
|
repository = "https://github.com/enpaul/keyosk/"
|
2020-11-26 06:22:13 +00:00
|
|
|
packages = [
|
|
|
|
{ include = "keyosk" },
|
|
|
|
{ include = "tests/*.py", format = "sdist" }
|
|
|
|
]
|
|
|
|
include = [
|
|
|
|
"keyosk/py.typed"
|
|
|
|
]
|
|
|
|
keywords = ["oauth", "openid", "api", "rest", "server"]
|
|
|
|
readme = "README.md"
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 1 - Planning",
|
|
|
|
"Environment :: Web Environment",
|
|
|
|
"Framework :: Flask",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: Information Technology",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
"Topic :: Internet :: WWW/HTTP",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: Session",
|
|
|
|
"Topic :: Security",
|
|
|
|
"Topic :: System :: Systems Administration",
|
|
|
|
"Topic :: System :: Systems Administration :: Authentication/Directory",
|
|
|
|
"Typing :: Typed"
|
|
|
|
]
|
2020-02-19 03:05:32 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.6"
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-02-19 04:02:02 +00:00
|
|
|
bandit = "^1.6.2"
|
2020-11-26 06:22:13 +00:00
|
|
|
black = { version = "^20.8b1", allow-prereleases = true }
|
|
|
|
dataclasses = {version = ">=0.6,<0.7", python = "3.6"}
|
2020-02-19 04:02:02 +00:00
|
|
|
ipython = "^7.12.0"
|
2020-11-26 06:22:13 +00:00
|
|
|
mypy = "^0.790"
|
2020-02-19 04:02:02 +00:00
|
|
|
pre-commit = "^2.1.0"
|
2020-11-26 06:22:13 +00:00
|
|
|
pylint = "^2.6.0"
|
2020-02-19 04:02:02 +00:00
|
|
|
pytest = "^5.3.5"
|
2020-11-26 06:22:13 +00:00
|
|
|
pytest-cov = "^2.10.1"
|
|
|
|
reorder-python-imports = "^1.9.0"
|
|
|
|
safety = "^1.9.0"
|
|
|
|
sphinx = "^3.3.0"
|
|
|
|
sphinx-autodoc-typehints = "^1.11.1"
|
|
|
|
toml = "^0.10.2"
|
|
|
|
tox = "^3.14.5"
|
|
|
|
tox-poetry-installer = "^0.5.0"
|
|
|
|
blacken-docs = {version = "^1.8.0", python = "^3.6.1"}
|
2020-02-19 03:05:32 +00:00
|
|
|
|
|
|
|
[build-system]
|
2020-11-26 06:22:13 +00:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|