init
This commit is contained in:
commit
a426df12c0
22 changed files with 2819 additions and 0 deletions
73
pyproject.toml
Normal file
73
pyproject.toml
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[project]
|
||||
name = "fastapi-dynamic-response"
|
||||
dynamic = ["version"]
|
||||
description = 'A demo fastapi application that automatically responds to user preferences for output format.'
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.8"
|
||||
license = "MIT"
|
||||
keywords = []
|
||||
authors = [
|
||||
{ name = "U.N. Owen", email = "void@some.where" },
|
||||
]
|
||||
classifiers = [
|
||||
"Development Status :: 4 - Beta",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
"Programming Language :: Python :: 3.10",
|
||||
"Programming Language :: Python :: 3.11",
|
||||
"Programming Language :: Python :: 3.12",
|
||||
"Programming Language :: Python :: Implementation :: CPython",
|
||||
"Programming Language :: Python :: Implementation :: PyPy",
|
||||
]
|
||||
dependencies = [
|
||||
"fastapi>=0.115.0",
|
||||
"html2text>=2024.2.26",
|
||||
"jinja2>=3.1.4",
|
||||
"markdown>=3.7",
|
||||
"pillow>=10.4.0",
|
||||
"pydyf==0.8.0",
|
||||
"python-levenshtein>=0.25.1",
|
||||
"rich>=13.9.2",
|
||||
"selenium>=4.25.0",
|
||||
"uvicorn>=0.31.1",
|
||||
"weasyprint>=61.2",
|
||||
]
|
||||
|
||||
[project.urls]
|
||||
Documentation = "https://github.com/U.N. Owen/fastapi-dynamic-response#readme"
|
||||
Issues = "https://github.com/U.N. Owen/fastapi-dynamic-response/issues"
|
||||
Source = "https://github.com/U.N. Owen/fastapi-dynamic-response"
|
||||
|
||||
[tool.hatch.version]
|
||||
path = "src/fastapi_dynamic_response/__about__.py"
|
||||
|
||||
[tool.hatch.envs.types]
|
||||
extra-dependencies = [
|
||||
"mypy>=1.0.0",
|
||||
]
|
||||
[tool.hatch.envs.types.scripts]
|
||||
check = "mypy --install-types --non-interactive {args:src/fastapi_dynamic_response tests}"
|
||||
|
||||
[tool.coverage.run]
|
||||
source_pkgs = ["fastapi_dynamic_response", "tests"]
|
||||
branch = true
|
||||
parallel = true
|
||||
omit = [
|
||||
"src/fastapi_dynamic_response/__about__.py",
|
||||
]
|
||||
|
||||
[tool.coverage.paths]
|
||||
fastapi_dynamic_response = ["src/fastapi_dynamic_response", "*/fastapi-dynamic-response/src/fastapi_dynamic_response"]
|
||||
tests = ["tests", "*/fastapi-dynamic-response/tests"]
|
||||
|
||||
[tool.coverage.report]
|
||||
exclude_lines = [
|
||||
"no cov",
|
||||
"if __name__ == .__main__.:",
|
||||
"if TYPE_CHECKING:",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue