-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
73 lines (67 loc) · 1.27 KB
/
pyproject.toml
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
[project]
name = "campusx"
version = "0.11.1"
license = "MIT"
authors = [{ name = "Anshul Raj Verma", email = "[email protected]" }]
requires-python = ">=3.11"
readme = "README.md"
description = "Get resource related to CampusX courses like DSMP and more."
dependencies = [
"bs4==0.0.1",
"httpx==0.26.0",
"mkdocs-markdownextradata-plugin==0.2.5",
"mkdocs-material==9.5.23",
]
[project.urls]
homepage = "https://github.com/arv-anshul/campusx"
repository = "https://github.com/arv-anshul/campusx"
[tool.rye]
manage = true
virtual = true
dev-dependencies = ["pytest>=8.0.0"]
[tool.rye.scripts]
dsmp2-main = { cmd = "python -m src.dsmp2.main", env-file = ".env" }
dsmp2-organise = "python -m src.dsmp2.organise"
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
extend-select = [
"B",
"BLE",
"C4",
"C90",
"E",
"F",
"I",
"ICN",
"INP",
"ISC",
"PGH",
"PIE",
"PTH",
"Q",
"RSE",
"RUF",
"S",
"SIM",
"TCH",
"UP",
"W",
"YTT",
]
extend-ignore = [
"B008",
"B905",
"E501",
"E741",
"INP001",
"ISC001",
"N818",
"PGH003",
"S101",
"S301",
"UP035",
]
extend-unfixable = ["B", "F401"]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]