aputils/pyproject.toml

75 lines
2 KiB
TOML
Raw Normal View History

2022-11-14 11:22:06 -05:00
[build-system]
2024-03-21 05:20:47 -04:00
requires = ["setuptools >= 38.3.0"]
build-backend = "setuptools.build_meta"
2023-10-31 07:55:07 -04:00
2024-03-21 05:20:47 -04:00
[project]
name = "activitypub-utils"
2024-03-21 05:20:47 -04:00
authors = [{name = "Izalia Mae", email = "admin@barkshark.xyz"}]
description = "Various classes and functions for ActivityPub servers"
license = {text = "CNPL 7+"}
keywords = ["python module"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
2024-04-03 11:07:47 -04:00
"Typing :: Typed"
2024-03-21 05:20:47 -04:00
]
requires-python = ">= 3.8"
dependencies = ["pycryptodome == 3.19.0"]
dynamic = ["version"]
2024-03-21 05:20:47 -04:00
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://git.barkshark.xyz/barkshark/aputils"
2024-03-21 05:20:47 -04:00
"Bug Tracker" = "https://git.barkshark.xyz/barkshark/aputils/issues"
Documentation = "https://docs.barkshark.xyz/aputils"
"Source Code" = "https://git.barkshark.xyz/barkshark/aputils"
[tool.setuptools]
include-package-data = true
packages = ["aputils"]
platforms = ["any"]
license-files = ["LICENSE.md"]
[tool.setuptools.dynamic]
version = {attr = "aputils.__version__"}
[project.optional-dependencies]
docs = [
"furo == 2024.1.29",
"sphinx == 7.2.6",
"sphinx-external-toc == 1.0.1",
]
2024-03-21 05:20:47 -04:00
dev = [
"mypy == 1.9.0",
"flake8 == 7.0.0",
2024-03-27 12:54:20 -04:00
"typing_extensions >= 4.10.0; python_version < '3.11.0'"
2024-03-21 05:20:47 -04:00
]
[tool.distutils.bdist_wheel]
universal = false
[tool.distutils.sdist]
formats = "zip, gztar"
2023-10-31 07:55:07 -04:00
2024-03-16 04:17:12 -04:00
[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
ignore_missing_imports = true
follow_imports = "silent"