-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "yeetcode"
version = "0.3.0"
authors = [
{ name="Qianxy", email="xyqian67@gmail.com" },
]
description = "Make your own leetcode problems"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
'PyYAML ~= 6.0',
'black ~= 22.10.0',
]
[project.optional-dependencies]
tests = [
'flake8 ~= 5.0.4',
'pytest ~= 7.1.3',
'coverage[toml] ~= 6.5.0',
]
[project.urls]
"Homepage" = "https://github.com/qianxyz/yeetcode"
"Bug Tracker" = "https://github.com/qianxyz/yeetcode/issues"
[project.scripts]
yeetcode = "yeetcode:main"
[tool.black]
line-length = 79
[tool.coverage.run]
branch = true
source = ["src"]
omit = ["*/__init__.py"]
[tool.coverage.report]
show_missing = true
fail_under = 100
# Regexes for lines to exclude from consideration
exclude_lines = [
'raise NotImplementedError',
'pass',
]