-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.07 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
41
42
43
44
45
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "site2md"
version = "0.1.3"
authors = [
{ name = "David Legrand", email = "1110600+davlgd@users.noreply.github.com" },
]
description = "Host an API to convert websites to markdown with optional features"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: FastAPI",
"Natural Language :: English",
"Topic :: Text Processing :: Markup :: Markdown"
]
dependencies = [
"aiofiles>=24.1",
"fastapi>=0.115",
"pydantic>=2.10",
"python-multipart>=0.0.20",
"redis>=5.2",
"requests>=2.32",
"trafilatura>=2.0",
"uvicorn>=0.34"
]
[project.optional-dependencies]
dev = [
"httpx>=0.28.0",
"pytest>=8.3.0",
"pytest-asyncio>=0.25.0",
"pytest-cov>=6.0.0"
]
[project.urls]
Homepage = "https://github.com/davlgd/site2md"
Issues = "https://github.com/davlgd/site2md/issues"