38 lines
1 KiB
TOML
38 lines
1 KiB
TOML
[project]
|
|
name = "support_formatter"
|
|
version = "0.2.1"
|
|
requires-python = ">= 3.10"
|
|
authors = [{name = "Firq", email = "firelp42@gmail.com"}]
|
|
maintainers = [{name = "Firq", email = "firelp42@gmail.com"}]
|
|
description = "Tool to manage requests for supports"
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Framework :: Flask",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
dependencies = [
|
|
"flask~=2.3.3",
|
|
"flask-smorest~=0.42.1",
|
|
"marshmallow~=3.20.1",
|
|
"gevent~=23.9.1",
|
|
]
|
|
|
|
[project.scripts]
|
|
support-formatter = "support_formatter.server:run_server"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["support_formatter*"]
|
|
|
|
[tool.setuptools.package-data]
|
|
support_formatter = ["*.html"]
|
|
|
|
[tool.pylint."MAIN"]
|
|
disable = [ "line-too-long", "missing-module-docstring" ]
|
|
|
|
[build-system]
|
|
requires = ["setuptools >= 61.0"]
|
|
build-backend = "setuptools.build_meta"
|