-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
88 lines (78 loc) · 1.91 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
81
82
83
84
85
86
87
88
[project]
name = "leet2git"
dynamic = ["version"]
description = "Tool to ease the integration between Leetcode and a Git repository"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{ name = "Yuri Rocha", email = "yurirocha15@gmail.com" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Utilities",
]
dependencies = [
"autoimport>=1.6.1",
"beautifulsoup4>=4.14.3",
"browser-cookie3>=0.20.1",
"click>=8.3.1",
"httpx>=0.28.1",
"platformdirs>=4.10.0",
"pydantic>=2.13.4",
]
[project.urls]
Homepage = "https://github.com/yurirocha15/leetcode2github"
Repository = "https://github.com/yurirocha15/leetcode2github"
[project.scripts]
leet2git = "leet2git.leet2git:leet2git"
[project.optional-dependencies]
dev = [
"build>=1.3.0",
"pre-commit>=4.5.0",
"pytest>=9.1.1",
"pytest-cov>=7.1.0",
"pytest-custom-exit-code>=0.3.0",
"ruff>=0.15.18",
"ty>=0.0.51",
]
[tool.setuptools.dynamic]
version = { attr = "leet2git.version.__version__" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
leet2git = ["py.typed"]
[tool.ruff]
line-length = 104
target-version = "py311"
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"B",
"C4",
"E",
"F",
"I",
"N",
"UP",
"W",
]
ignore = [
"E501",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[build-system]
requires = ["setuptools>=80.9.0", "wheel"]
build-backend = "setuptools.build_meta"