-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
56 lines (51 loc) · 1.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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "alchemark-ai"
version = "0.1.9"
description = "AlcheMark AI - PDF to Markdown conversion with rich metadata and element analysis"
readme = "README.md"
authors = [
{name = "Matheus Sena"}
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Topic :: Text Processing :: Markup :: Markdown",
"Topic :: Text Processing :: Markup :: LaTeX",
]
requires-python = ">=3.11"
dependencies = [
"langdetect>=1.0.9",
"pydantic>=2.11.3",
"pymupdf>=1.25.5",
"pymupdf4llm>=0.0.21",
"tiktoken>=0.9.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[project.urls]
"Homepage" = "https://github.com/matthsena/AlcheMark-ai"
"Bug Tracker" = "https://github.com/matthsena/AlcheMark-ai/issues"
[tool.setuptools]
packages = ["alchemark_ai",
"alchemark_ai.pdf2md",
"alchemark_ai.formatter",
"alchemark_ai.models",
"alchemark_ai.configs"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
python_classes = "Test*"
filterwarnings = [
"ignore::DeprecationWarning:importlib._bootstrap:241",
"ignore::DeprecationWarning:_pytest.runner",
"ignore::DeprecationWarning:sys"
]