-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.06 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.06 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
[build-system]
requires = ["setuptools>=70"]
build-backend = "setuptools.backends.legacy:build"
[project]
name = "new-grad-jobs"
version = "0.1.0"
description = "Automated new grad job aggregator scraping Greenhouse, Lever, Google Careers, and more."
requires-python = ">=3.11"
dependencies = [
"requests>=2.31.0",
"PyYAML>=6.0.1",
"python-dateutil>=2.8.2",
"python-jobspy>=1.1.16",
"playwright>=1.41.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"flake8>=7.0",
"isort>=5.13",
"pre-commit>=3.7",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v --cov=scripts --cov-report=term-missing --cov-report=xml"
python_files = "test_*.py"
python_functions = "test_*"
[tool.isort]
profile = "black"
line_length = 120
known_first_party = ["scripts"]
[tool.flake8]
max-line-length = 120
select = ["E9", "F63", "F7", "F82"]
per-file-ignores = [
"test_*.py:F401",
]
[tool.coverage.run]
source = ["scripts"]
omit = ["tests/*", ".venv/*"]
[tool.coverage.report]
show_missing = true
fail_under = 0