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

Update pyproject with latest pypi-ready config details

Add classifiers
Add tests to source dists to support testing while building
Add license, keywords, and docs
Update build system to use poetry-core
This commit is contained in:
Ethan Paul 2020-12-21 21:27:41 -05:00
parent 2aee3ac946
commit e94e239938
No known key found for this signature in database
GPG Key ID: C5F5542B54A4D9C6

View File

@ -5,8 +5,35 @@ license = "MIT"
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"] authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
description = "HTTP server for uploading images and generating thumbnails" description = "HTTP server for uploading images and generating thumbnails"
repository = "https://github.com/mocproject/imagemonk/" repository = "https://github.com/mocproject/imagemonk/"
packages = [{include = "imagemonk"}] packages = [
include = ["imagemonk/py.typed"] {include = "imagemonk"},
{include = "tests", format = "sdist"}
]
include = [
"imagemonk/py.typed"
]
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] [tool.poetry.dependencies]
python = "^3.7" python = "^3.7"
@ -30,5 +57,5 @@ toml = "^0.10.1"
tox = "^3.20.0" tox = "^3.20.0"
[build-system] [build-system]
requires = ["poetry>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.masonry.api" build-backend = "poetry.core.masonry.api"