-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (54 loc) · 1.61 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
[tool.poetry]
name = "matter"
version = "0.1.1"
description = "Matter is a free, open-source and all-in-one ticket bot for Discord"
license = "GPL-3.0-Only"
authors = [ "kaeeraa <[email protected]>" ]
maintainers = [ "kaeeraa <[email protected]>" ]
repository = "https://github.com/kaeeraa/Matter"
readme = "README.md"
keywords = ["discord", "bot", "ticket", "bot", "matter"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GPL-3.0 License",
"Programming Language :: Python :: 3.12"
]
packages = [
{ include = "helpers" },
{ include = "commands" },
{ include = "instances" },
{ include = "passive" },
]
[tool.poetry.dependencies]
python = ">=3.12.6,<3.14"
hikari = { version = ">=2.0.0,<3.0.0", extras = ["speedups"]}
hikari-arc = ">=1.4.0,<2.0.0"
loguru = ">=0.7.0,<1.0.0"
uvloop = { version = ">=0.17.0,<1.0.0", optional = true }
scipy-stubs = "^1.14.1.3"
arc = {extras = ["stubs"], version = "^1.0"}
pyjson5 = "^1.6.7"
[tool.poetry.extras]
uvloop = ["uvloop"]
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
isort = "^5.13.2"
flake8 = "^7.1.1"
flake8-bugbear = "^24.8.19"
pylint = "^3.3.1"
[tool.black]
target-version = ["py312"]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.pylint.format]
max-line-length = "120"
[tool.poetry.urls]
"Source" = "https://github.com/kaeeraa/Matter"
"Bug Tracker" = "https://github.com/kaeeraa/Matter/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"