-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (53 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (53 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[project]
name = "pubby"
version = "0.2.20"
description = "A general-purpose library to add ActivityPub federation support to your website"
license = "AGPL-3.0-or-later"
dependencies = [
"cryptography>=41.0",
"jinja2",
"requests",
]
authors = [
{name = "Fabio Manganiello", email = "fabio@manganiello.tech"},
]
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 3 - Alpha",
]
readme = "README.md"
requires-python = '>= 3.8'
keywords = ["activitypub", "fediverse", "federation", "mastodon"]
[project.optional-dependencies]
db = ["sqlalchemy"]
fastapi = ["fastapi", "uvicorn"]
flask = ["flask"]
tornado = ["tornado"]
test = ["pytest", "pytest-cov", "sqlalchemy", "flask", "fastapi", "httpx", "tornado"]
dev = ["pre-commit", "black", "flake8"]
[project.urls]
homepage = "https://git.fabiomanganiello.com/pubby"
github = "https://github.com/blacklight/pubby"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src/python"}
[tool.setuptools.package-data]
pubby = ["templates/*.html"]
[tool.setuptools.packages.find]
where = ["src/python"]
include = ["pubby*"]
[tool.bumpversion]
current_version = "0.2.20"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "src/python/pubby/__init__.py"
[[tool.bumpversion.files]]
filename = "CHANGELOG.md"
search = "Unreleased"
[tool.pytest.ini_options]
markers = [
"integration: marks integration tests",
]