-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
78 lines (56 loc) · 1.36 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
[tool.poetry]
name = "leetcode-runner"
version = "0.0.4"
description = "LeetCode solutions runner"
license = "MIT"
authors = ["fbjorn <[email protected]>"]
readme = "README.md"
homepage = "https://pypi.org/project/leetcode_runner"
documentation = "https://github.com/fbjorn/leetcode-runner"
repository = "https://github.com/fbjorn/leetcode-runner"
keywords = [
"leetcode",
"runner",
]
classifiers = [
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
]
[tool.poetry.dependencies]
python = "^3.9"
colorama = "^0.4.4"
termcolor = "^1.1.0"
gql = {extras = ["requests"], version = "^3.4.0"}
pydantic = "^1.10.2"
beautifulsoup4 = "^4.11.1"
typer = "^0.6.1"
[tool.poetry.dev-dependencies]
# Formatters
black = "=21.8b0"
isort = "=5.9.3"
# Linters
mypy = "~0.812"
pydocstyle = "^6.1"
pylint = "~2.12.2"
# Testing
pytest = "^6.2"
pytest-describe = "^2.0"
pytest-expecter = "^2.1"
pytest-random = "*"
pytest-cov = "^2.12"
freezegun = "*"
# Reports
coveragespace = "^4.0"
[tool.poetry.scripts]
leetcode_runner = "leetcode_runner.cli:main"
leetcode = "leetcode_runner.cli:cli"
[tool.black]
quiet = true
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"