-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.42 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (75 loc) · 2.42 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[build-system]
requires = ["hatchling>=1.21"]
build-backend = "hatchling.build"
[project]
name = "wellmarked"
version = "1.1.1"
description = "Official Python SDK for the WellMarked API — convert any URL to clean Markdown."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
{ name = "WellMarked", email = "support@wellmarked.io" },
]
keywords = ["wellmarked", "markdown", "scraping", "extraction", "html-to-markdown", "rag", "llm", "pipeline"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.25,<1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-asyncio>=0.23",
"respx>=0.20",
"mypy>=1.8",
"ruff>=0.4",
]
[project.urls]
Homepage = "https://wellmarked.io"
Documentation = "https://wellmarked.io/docs"
Source = "https://github.com/WellMarkedAPI/Python-SDK"
Issues = "https://github.com/WellMarkedAPI/Python-SDK/issues"
[tool.hatch.build.targets.wheel]
packages = ["wellmarked"]
[tool.hatch.build.targets.sdist]
include = [
"wellmarked",
"README.md",
"LICENSE",
"pyproject.toml",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.9"
strict = true
files = ["wellmarked"]
[tool.ruff]
line-length = 100
target-version = "py39"
[tool.ruff.lint]
# Pin ruff's classic default rule set (pyflakes + the pycodestyle subset).
# CI installs ruff unpinned, so without an explicit selection `ruff check`
# follows whatever the *current* ruff release defaults to — and newer releases
# broadened those defaults (pyupgrade/simplify/isort/ruff-native), which turns
# CI red on unchanged code. Adopting those rule families is a deliberate,
# separate migration, not an accident of an upstream release.
select = ["E4", "E7", "E9", "F"]