mirror of
https://github.com/enpaul/kodak.git
synced 2024-11-11 00:57:00 +00:00
71 lines
2.0 KiB
TOML
71 lines
2.0 KiB
TOML
[tool.poetry]
|
|
name = "imagemuck"
|
|
version = "0.1.0"
|
|
license = "MIT"
|
|
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
|
|
description = "HTTP server for uploading images and generating thumbnails"
|
|
repository = "https://github.com/mocproject/imagemuck/"
|
|
packages = [
|
|
{include = "imagemuck"},
|
|
{include = "tests", format = "sdist"}
|
|
]
|
|
include = [
|
|
"imagemuck/py.typed",
|
|
"imagemuck/openapi.yaml"
|
|
]
|
|
keywords = ["flask", "image", "thumbnail", "hosting"]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
"Environment :: Web Environment",
|
|
"Framework :: Flask",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: System Administrators",
|
|
"Intended Audience :: Information Technology",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Natural Language :: English",
|
|
"Operating System :: OS Independent",
|
|
"Operating System :: POSIX :: Linux",
|
|
"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 :: Dynamic Content",
|
|
"Topic :: Multimedia :: Graphics",
|
|
"Topic :: Multimedia :: Graphics :: Graphics Conversion"
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
flask = "^1.1.2"
|
|
flask-restful = "^0.3.8"
|
|
"ruamel.yaml" = "^0.16.12"
|
|
peewee = "^3.13.3"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
bandit = "^1.6.2"
|
|
black = "^21.4b2"
|
|
blacken-docs = "^1.9.1"
|
|
ipython = "^7.10.2"
|
|
mdformat = "^0.6"
|
|
mdformat-gfm = "^0.2"
|
|
mypy = "^0.800"
|
|
pre-commit = "^2.1.1"
|
|
pre-commit-hooks = "^3.4.0"
|
|
pylint = "^2.6.0"
|
|
pytest = "^5.2.0"
|
|
pytest-cov = "^2.8.0"
|
|
reorder-python-imports = "^2.3.0"
|
|
safety = "^1.9.0"
|
|
sphinx = "^3.3.0"
|
|
sphinx-autodoc-typehints = "^1.11.1"
|
|
toml = "^0.10.1"
|
|
tox = "^3.20.0"
|
|
tox-poetry-installer = {extras = ["poetry"], version = "^0.8.0"}
|
|
openapi-spec-validator = "^0.3.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|