-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
90 lines (82 loc) · 1.63 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
82
83
84
85
86
87
88
89
90
[tool.poetry]
name = "slashbot"
version = "5.0.0a"
description = ""
authors = ["Edward J. Parkinson"]
readme = "README.md"
packages = [{ include = "slashbot" }]
[tool.poetry.dependencies]
python = "^3.11"
unidecode = "1.3.6"
prettytable = "3.6.0"
rule34 = "1.8.1"
wolframalpha = "5.0.0"
disnake = "2.8.1"
pyowm = "3.3.0"
requests = "2.28.1"
dateparser = "^1.1.8"
tiktoken = "0.7.0"
watchdog = "^3.0.0"
geopy = "^2.3.0"
gitpython = "^3.1.37"
pyspellchecker = "^0.7.2"
async-timeout = "^4.0.3"
anthropic = "^0.21.3"
pillow = "^10.2.0"
httpx = "^0.27.0"
openai = "1.36.0"
aiofiles = "^23.2.1"
defusedxml = "^0.7.1"
pytest = "^8.2.2"
pytest-asyncio = "^0.23.7"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
ipython = "^8.13.2"
pre-commit = "^3.3.3"
isort = "^5.12.0"
ruff = "^0.3.7"
pytest = "^8.2.2"
tqdm = "^4.67.0"
memory-profiler = "^0.61.0"
[tool.isort]
profile = "ruff"
[tool.ruff]
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
line-length = 120
indent-width = 4
target-version = "py311"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["E501", "ANN101", "COM812", "S311", "S101", "D100"]
fixable = ["ALL"]
unfixable = []
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[tool.pytest.ini_options]
pythonpath = [".", "lib", "lib/markovify"]