-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (69 loc) · 1.6 KB
/
pyproject.toml
File metadata and controls
81 lines (69 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 80
[tool.isort]
profile = "black"
[tool.ruff]
# Same as Black.
line-length = 80
[tool.ruff.lint]
select = ["D", "W505"]
ignore = ["D100", "D102", "D104", "D105", "D107", "D203", "D213", "D401", "D402"]
[tool.ruff.lint.pycodestyle]
max-doc-length = 100
[tool.ruff.lint.pydocstyle]
convention = "google"
[[tool.uv.index]]
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
default = true
[tool.setuptools.packages.find]
where = ["."]
include = ["quantmind*"]
[tool.setuptools.package-data]
"*" = ["*.yaml", "*.yml", "*.json", "*.txt"]
[project]
name = "quantmind"
version = "0.2.0"
description = "QuantMind - Intelligent Knowledge Extraction and Retrieval Framework"
requires-python = ">=3.10"
dependencies = [
"requests",
"arxiv",
"pyyaml",
"ruff",
"pytest",
"numpy>=2.2.4",
"networkx>=3.4.2",
"scikit-learn>=1.6.1",
"pyvis==0.3.1",
"plotly>=6.0.1",
"openai>=1.68.2",
"camel-ai>=0.2.42",
"pillow>=10.1.0,<11.0.0",
"llama-cloud-services>=0.6.12",
"ipykernel>=6.29.5",
"pydantic>=2.0.0",
"pymupdf>=1.23.0",
"marker>=2.1.3",
"python-dotenv>=1.0.0",
"httpx[socks]>=0.28.1",
"litellm>=1.74.0.post1",
"jinja2>=3.0.0",
]
[project.scripts]
quantmind = "quantmind_cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=23.0.0",
"isort>=5.12.0",
"mypy>=1.0.0",
]
full = [
"marker-pdf>=0.2.0",
"beautifulsoup4>=4.12.0",
"sentence-transformers>=2.2.0",
]