-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
81 lines (68 loc) · 2.14 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
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=62.6.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "leetcode-study-tool"
version = "1.3.4"
description = "A tool for studying Leetcode with Python"
authors = [{name="John Sutor", email="[email protected]" }]
license = {file = "LICENSE.txt"}
readme = "README.md"
keywords = ["leetcode", "leet", "study", "Anki"]
classifiers=[
# Development status
'Development Status :: 4 - Beta',
# Supported OS
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
# Supported Python versions
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
# License
'License :: OSI Approved :: MIT License',
# Topic
'Topic :: Software Development',
'Topic :: Education',
]
dependencies = [
"requests==2.32.3",
"XlsxWriter==3.2.0",
"p-tqdm==1.4.2"
]
[project.optional-dependencies]
dev = [
"ruff==0.8.6",
"mypy==1.14.1",
"types-requests>=2.32.0",
"google-api-python-client==2.157.0",
"pytest==8.3.4",
"pytest-cov>=5.0.0"
]
[tool.black]
line-length = 80
target-version = ["py38", "py39", "py310", "py311", "py312", "py313"]
[options]
python_requires = ">=3.6"
[project.scripts]
leetcode-study-tool = "leetcode_study_tool.cli:main"
[project.urls]
homepage = "https://github.com/johnsutor/leetcode-study-tool"
repository = "https://github.com/johnsutor/leetcode-study-tool"
changelog = "https://github.com/johnsutor/leetcode-study-tool/blob/main/CHANGELOG.md"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I", "B", "SIM"]
[tool.mypy]
exclude = [
"build",
"scripts"
]
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.setuptools.packages.find]
include = ["leetcode_study_tool"]