-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.05 KB
/
pyproject.toml
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
[tool.poetry]
name = "f2ap"
version = "0.1.0"
description = "Put your website on the Fediverse thanks to your RSS/Atom feed"
keywords = ["f2ap", "activitypub", "blog", "rss", "atom"]
authors = ["Jérôme Deuchnord <[email protected]>"]
repository = "https://github.com/Deuchnord/f2ap"
license = "AGPL-3.0-or-later"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Framework :: FastAPI",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP",
]
[tool.poetry.scripts]
f2ap = "f2ap.__main__:main"
[tool.poetry.dependencies]
python = "^3.9"
feedparser = "^6.0"
toml = "^0.10.2"
fastapi = ">=0.88,<0.110"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
pyhumps = "^3.8.0"
requests = "^2.28.1"
pycryptodome = "^3.16.0"
markdown = "^3.4.1"
mdx-linkify = "^2.1"
pydantic = ">=1.10.2,<3.0.0"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"