-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
61 lines (53 loc) · 1.5 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "discord-qalib"
version = "2.5.10"
authors = [
{ name = "YousefEZ", email = "syberprojects@gmail.com" },
]
description = "Discord library built on discord.py to simplify source code by rendering templates of embeds and menus"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["dependencies", "license"]
[tool.poetry]
name = "discord-qalib"
version = "2.5.10"
authors = ["YousefEZ <syberprojects@gmail.com>", ]
description = "Discord library built on discord.py to simplify source code by rendering templates of embeds and menus"
packages = [{ include = "qalib" }]
[tool.pylint.messages_control]
max-line-length = 120
disable = [
"missing-docstring",
"too-few-public-methods",
]
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.isort]
profile = "black"
combine_as_imports = true
combine_star = true
line_length = 120
[tool.poetry.dependencies]
python = "^3.8"
mock = "^5.0.0"
typing-extensions = "^4.4.0"
discord-py = "^2.1.0"
emoji = "^2.2.0"
jinja2 = "^3.1.2"
pyright = "^1.1.342"
discord = "^2.3.2"
deprecated = "^1.2.14"
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.urls]
"Homepage" = "https://github.com/YousefEZ/discord-qalib"
"Bug Tracker" = "https://github.com/YousefEZ/discord-qalib/issues"