-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (70 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (70 loc) · 2.04 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "leetcode-sensei"
version = "0.7.0"
description = "A spaced-repetition CLI for LeetCode practice problems"
readme = "README.md"
requires-python = ">=3.10"
license-files = ["LICENSE"]
authors = [
{name = "Snehashish Reddy Manda", email = "srmanda.cs@gmail.com"},
]
keywords = ["leetcode", "spaced-repetition", "algorithms", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Education",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/overkill-labs/leetcode-sensei"
Repository = "https://github.com/overkill-labs/leetcode-sensei"
BugTracker = "https://github.com/overkill-labs/leetcode-sensei/issues"
Documentation = "https://github.com/overkill-labs/leetcode-sensei/blob/main/README.md"
[project.scripts]
sensei = "sensei:main"
[tool.setuptools]
package-dir = {"" = "src"}
py-modules = ["sensei", "hint", "mark", "new", "lopen", "revisit", "utils", "progress"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["completions/_leetcode-sensei"]
[project.optional-dependencies]
test = [
"pytest>=8.0.0",
"pytest-cov>=4.1.0",
]
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--strict-markers",
"--strict-config",
"--cov=src",
]
[tool.coverage.run]
source = ["src"]
omit = ["*/tests/*", "*/test_*"]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
]