-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (31 loc) · 985 Bytes
/
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
[tool.poetry]
name = "venkatesh"
version = "0.1.0"
description = "A community bot for the CodeX server."
authors = ["abhigyantrips"]
[tool.poetry.dependencies]
python = "^3.11.1"
disnake = "^2.7.0"
loguru = "^0.6.0"
python-dotenv = "^0.21.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
flake8-annotations = "~=2.0"
flake8-bugbear = "^22.1.11"
flake8-docstrings = "~=1.4"
flake8-import-order = "~=0.18"
flake8-string-format = "~=0.2"
flake8-tidy-imports = "~=4.0"
flake8-todo = "~=0.7"
pep8-naming = "~=0.9"
taskipy = "^1.9.0"
pre-commit = "^2.15.0"
black = "^22.1.0"
[tool.taskipy.tasks]
bot = { cmd = "python -m venkatesh", help = "Runs the bot"}
lint = { cmd = "pre-commit run --all-files", help = "Lints all files" }
precommit = { cmd = "pre-commit install", help = "Installs the pre-commit git hook" }
format = { cmd = "black venkatesh", help = "Runs the black python formatter" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"