forked from gurkult/gurkbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (48 loc) · 1.33 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
[tool.poetry]
name = "gurkbot"
version = "0.1.0"
description = "Our community bot, used for running the server."
authors = ["The Gurkult Community <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/gurkult/gurkbot"
repository = "https://github.com/gurkult/gurkbot"
packages = [
{ include = "bot" },
]
[tool.poetry.dependencies]
python = "^3.9.0"
disnake = "^2.3"
loguru = "^0.5.3"
PyYAML = "^5.4.1"
Pillow = "^9.0.0"
fuzzywuzzy = "^0.18.0"
asyncpg = "^0.23.0"
python-dateutil = "^2.8.2"
humanize = "^3.11.0"
mcstatus = "^6.5.0"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
flake8-annotations = "^2.6.2"
flake8-bugbear = "^21.4.3"
flake8-docstrings = "^1.6.0"
flake8-isort = "^4.1.1"
flake8-string-format = "^0.3.0"
flake8-todo = "^0.7"
isort = "^5.10.1"
black = "^21.6b0"
pep8-naming = "^0.11.1"
pre-commit = "^2.13.0"
taskipy = "^1.8.1"
python-dotenv = "^0.18.0"
[tool.isort]
profile = "black"
line_length = 110
[tool.taskipy.tasks]
bot = { cmd = "python -m bot", help = "Runs Bot"}
lint = { cmd = "pre-commit run --all-files", help = "Lints project" }
precommit = { cmd = "pre-commit install", help = "Installs the pre-commit git hook" }
format = { cmd = "black --check .", help = "Runs the black python formatter" }
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"