-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 762 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 762 Bytes
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
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "jobflow-learning"
version = "0.1.0"
description = "自动化招聘数据采集与分析项目"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"requests>=2.32,<3",
"psycopg[binary]>=3.2,<4",
"fastapi>=0.115,<1",
"uvicorn[standard]>=0.34,<1",
"openai>=1.68,<2",
"matplotlib>=3.10,<4",
"pyyaml>=6.0,<7",
"streamlit>=1.40,<2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.3,<9",
"ruff>=0.9,<1",
"httpx>=0.28,<1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.ruff]
target-version = "py312"
line-length = 100