2023-01-09 21:53:54 +00:00
|
|
|
[project]
|
|
|
|
name = "fediblockhole"
|
2023-02-12 05:30:48 +00:00
|
|
|
version = "0.4.3"
|
2023-01-09 21:53:54 +00:00
|
|
|
description = "Federated blocklist management for Mastodon"
|
|
|
|
readme = "README.md"
|
|
|
|
license = {file = "LICENSE"}
|
2023-02-12 05:32:56 +00:00
|
|
|
requires-python = ">=3.6"
|
2023-01-09 21:53:54 +00:00
|
|
|
keywords = ["mastodon", "fediblock"]
|
|
|
|
authors = [
|
|
|
|
{name = "Justin Warren"}, {email = "justin@eigenmagic.com"}
|
|
|
|
]
|
|
|
|
classifiers = [
|
|
|
|
"Development Status :: 3 - Alpha",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"Intended Audience :: System Administrators",
|
|
|
|
"License :: OSI Approved :: GNU Affero General Public License v3",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
2023-02-12 05:32:56 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.6",
|
2023-01-09 21:53:54 +00:00
|
|
|
]
|
|
|
|
dependencies = [
|
|
|
|
"requests",
|
|
|
|
"toml"
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
homepage = "https://github.com/eigenmagic/fediblockhole"
|
|
|
|
documentation = "https://github.com/eigenmagic/fediblockhole"
|
|
|
|
repository = "https://github.com/eigenmagic/fediblockhole"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
fediblock-sync = "fediblockhole:main"
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["hatchling"]
|
|
|
|
build-backend = "hatchling.build"
|
2023-01-11 20:02:48 +00:00
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
addopts = [
|
|
|
|
"--import-mode=importlib",
|
|
|
|
]
|