basgi/pyproject.toml

104 lines
2.3 KiB
TOML

[build-system]
requires = ["setuptools >= 69.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "barkshark-asgi"
version = "0.1.0"
authors = [{name = "Zoey Mae", email = "admin@barkshark.xyz"}]
description = "Simple ASGI framework for activitypub servers"
license = {text = "CNPL 7+"}
keywords = [
"python",
"asgi",
"activitypub",
"web",
"http",
"server",
"jinja"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: Other/Proprietary License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: HTTP Servers",
"Typing :: Typed"
]
requires-python = ">= 3.11"
dependencies = [
"activitypub-utils == 0.2.3",
"barkshark-lib == 0.1.2",
"gemi-python == 0.1.1",
"http-router == 4.1.2",
"httpx[http2] == 0.27.0",
"jinja2-haml == 0.3.5",
"libsass == 0.23.0",
"multidict == 6.0.5",
"multipart == 0.2.4",
"python-multipart == 0.0.9",
"pyyaml == 6.0.1"
]
[project.urls]
"Bug Tracker" = "https://git.barkshark.xyz/barkshark/basgi/issues"
Documentation = "https://git.barkshark.xyz/barkshark/basgi/wiki"
"Source Code" = "https://git.barkshark.xyz/barkshark/basgi"
[project.optional-dependencies]
granian = [
"granian[reload] == 1.2.2"
]
uvicorn = [
"uvicorn[standard] == 0.29.0"
]
docs = [
"furo == 2024.1.29",
"sphinx == 7.2.6",
"sphinx-external-toc == 1.0.1"
]
dev = [
"build == 1.2.1",
"mypy == 1.9.0",
"flake8 == 7.0.0",
"pyinstaller == 6.5.0",
"types-libsass == 0.23.0.20240311",
"watchfiles == 0.21.0"
]
[tool.setuptools]
include-package-data = true
packages = [
"basgi"
]
platforms = ["any"]
license-files = ["LICENSE.md"]
[tool.setuptools.package-data]
basgi = ["framework"]
[tool.distutils.bdist_wheel]
universal = false
[tool.distutils.sdist]
formats = "zip, gztar"
[tool.mypy]
show_traceback = true
install_types = true
pretty = true
disallow_untyped_decorators = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_ignores = true
strict = true
implicit_reexport = true