-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (37 loc) · 898 Bytes
/
Copy pathpyproject.toml
File metadata and controls
45 lines (37 loc) · 898 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
39
40
41
42
43
44
45
[project]
name = "econ-job-market"
version = "0.1.0"
description = "Scraper and database for economics PhD placement data"
requires-python = ">=3.10"
dependencies = [
"requests>=2.31,<3",
"beautifulsoup4>=4.12,<5",
"anthropic>=0.40,<1",
]
[dependency-groups]
dev = [
"ruff>=0.11",
"pyright>=1.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.scripts]
ejm = "src.__main__:main"
[tool.ruff]
target-version = "py310"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP"]
ignore = [
"E501", # line length handled by formatter
]
[tool.ruff.lint.isort]
known-first-party = ["src"]
[tool.pyright]
pythonVersion = "3.10"
typeCheckingMode = "basic"
include = ["src"]
exclude = ["src/parsers", "src/tools"] # generated parsers and utility scripts have loose typing