social/pyproject.toml
2024-04-18 22:36:06 -04:00

108 lines
2.5 KiB
TOML

[build-system]
requires = ["setuptools >= 69.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "barkshark-social"
version = "0.1.0"
authors = [{name = "Zoey Mae", email = "admin@barkshark.xyz"}]
description = "Lightweight ActivityPub server"
license = {text = "CNPL 7+"}
keywords = [
"python",
"activitypub",
"web",
"http",
"server",
"social media",
"starlette",
"jinja"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: AsyncIO",
"Intended Audience :: System Administrators",
"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 = [
"argon2-cffi == 23.1.0",
"barkshark-sql == 0.1.3",
"click == 8.1.7",
"pymemcache == 4.0.0",
"pyyaml == 6.0.1",
"uvicorn[standard] == 0.29.0",
"barkshark-asgi @ https://git.barkshark.xyz/barkshark/basgi/archive/main.tar.gz",
"barkshark-lib @ https://git.barkshark.xyz/barkshark/blib/archive/main.tar.gz"
]
[project.urls]
"Bug Tracker" = "https://git.barkshark.xyz/barkshark/social/issues"
Documentation = "https://git.barkshark.xyz/barkshark/social/wiki"
"Source Code" = "https://git.barkshark.xyz/barkshark/social"
[project.optional-dependencies]
docs = [
"furo == 2024.1.29",
"sphinx == 7.2.6",
"sphinx-external-toc == 1.0.1"
]
dev = [
"mypy == 1.9.0",
"flake8 == 7.0.0",
"pyinstaller == 6.5.0",
"watchfiles == 0.21.0"
]
[tool.setuptools]
include-package-data = true
packages = [
"barkshark_social",
"barkshark_social.database",
"barkshark_social.routes"
]
platforms = ["any"]
license-files = ["LICENSE.md"]
[tool.setuptools.package-data]
barkshark_social = [
"translations/*",
"frontend/*",
"database/*",
"frontend/scss/*",
"frontend/page/*",
"frontend/static/images/*",
"frontend/static/css/*",
"frontend/static/cantarell/*",
"frontend/static/js/*",
]
[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
follow_imports = "silent"
strict = true
implicit_reexport = true