-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.58 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
[tool.poetry]
name = "cotd_sandbox"
version = "1.0.0"
description = ""
authors = ["Literally Who <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
ruff = "^0.1.8"
pyfakefs = "^5.3.2"
black = "^23.12.0"
pytest = "^7.4.3"
[tool.poetry.dev-dependencies]
# black = "*"
# ruff = "^0.1"
# pytest = "*"
# pyfakefs = "*"
[tool.pyright]
exclude = [
"bazel-cotd-telegram-bot",
"bazel-out",
# "bazel-bin",
"bazel-testlogs",
]
include = ["bazel-bin/cotd/cotdbot.runfiles/python_deps_python_telegram_bot/"]
extraPaths = [
# "bazel-cotd-telegram-bot/external/python_deps_python_telegram_bot/pypi__python_telegram_bot",
# "bazel-cotd-telegram-bot//external/python_deps_python_telegram_bot/pypi__pillow",
# "bazel-cotd-telegram-bot//external/python_deps_python_telegram_bot/pypi__ratelimit",
# "bazel-cotd-telegram-bot//external/python_deps_python_telegram_bot/pypi__pydantic",
# "bazel-cotd-telegram-bot//external/python_deps_python_telegram_bot/pypi__pytest",
# "bazel-cotd-telegram-bot//external/python_deps_python_telegram_bot/pypi__pyfakefs",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_telegram_bot",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_pillow",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_ratelimit",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_pydantic",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_pytest",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_pyfakefs",
"bazel-bin/cotd/cotdbot.runfiles/python_deps_python_requests",
]
# typeCheckingMode = strict
typeCheckingMode = "basic"