forked from jackwener/boss-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (52 loc) · 1.36 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (52 loc) · 1.36 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
[project]
name = "kabi-boss-cli"
version = "0.3.6"
description = "A CLI for Boss Zhipin (BOSS直聘) — search jobs, chat with bosses from the terminal"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [{ name = "jackwener", email = "jakevingoo@gmail.com" }]
keywords = ["boss", "zhipin", "cli", "terminal", "job", "recruitment"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business",
]
dependencies = [
"click>=8.0",
"rich>=13.0",
"httpx>=0.27",
"browser-cookie3>=0.19",
"qrcode>=7.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.11.0",
]
yaml = [
"pyyaml>=6.0",
]
browser = [
"camoufox>=0.4",
]
[project.urls]
Homepage = "https://github.com/jackwener/boss-cli"
Repository = "https://github.com/jackwener/boss-cli"
Issues = "https://github.com/jackwener/boss-cli/issues"
[project.scripts]
boss = "boss_cli.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["boss_cli"]
[tool.pytest.ini_options]
markers = [
"smoke: end-to-end tests requiring live cookies (deselect with '-m \"not smoke\"')",
]
[tool.ruff]
target-version = "py310"
line-length = 140