-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (69 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
79 lines (69 loc) · 1.75 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
[tool.black]
line-length = 100
target-version = ["py39"]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SmartResume"
version = "0.1.1"
license = { text = "Apache-2.0" }
description = "Intelligent Resume Parsing System"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["resume", "parsing", "ocr", "llm", "pdf", "layout"]
classifiers = [
"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",
]
dependencies = [
"numpy>=1.23",
"pillow>=9.5",
"opencv-python>=4.7",
"pdfplumber>=0.10.0",
"pyyaml>=6.0",
"tiktoken>=0.5.1",
"openai>=1.30.0",
"json-repair>=0.16.0",
"easyocr>=1.7.0",
"langdetect>=1.0.9",
"vllm>=0.2.0",
"torch>=2.0.0",
"transformers>=4.30.0",
"accelerate>=0.20.0",
"modelscope>=1.9.0",
"requests>=2.25.0",
"onnxruntime>=1.17.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov>=4.0",
"black>=23.0",
"flake8>=6.0",
"mypy>=1.0",
]
docs = [
"sphinx>=5.0",
"sphinx-rtd-theme>=1.0",
]
gradio = [
"gradio>=5.34,<6",
"gradio-pdf>=0.0.22",
]
[tool.setuptools]
package-dir = {"" = "."}
[tool.setuptools.packages.find]
where = ["."]
include = ["smartresume*", "scripts*"]
[project.urls]
Homepage = "https://github.com/alibaba/SmartResume"
Repository = "https://github.com/alibaba/SmartResume"
Documentation = "https://github.com/alibaba/SmartResume#readme"
"Bug Tracker" = "https://github.com/alibaba/SmartResume/issues"
[project.scripts]
SmartResume = "scripts.start:main"
SmartResume-cli = "scripts.start:main"