-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
46 lines (39 loc) · 1.13 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
[tool.poetry]
name = "tickets-plus"
version = "0.3.0.0"
description = "A companion bot adding some extensions to Tickets discord bot. Experimental."
authors = ["Tech. TTGames <[email protected]>"]
license = "EPL-2.0"
readme = "README.md"
packages = [{include = "tickets_plus"}]
exclude = ["branding"]
[tool.poetry.dependencies]
python = "^3.12"
"discord.py" = "^2.4.0"
SQLAlchemy = {extras = ["asyncio"], version = "^2.0.36"}
alembic = {extras = ["tz"], version = "^1.14.0"}
asyncpg = { version = "^0.30.0", optional = true }
aiosqlite = { version = "^0.20.0", optional = true }
pynacl = "^1.5.0"
tornado = "^6.4"
tzdata = "^2024.2"
[tool.poetry.extras]
sqlite = ["aiosqlite"]
pgsql = ["asyncpg"]
database = ["asyncpg", "aiosqlite"]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
yapf = "^0.43.0"
pylint = "^3.3.3"
pdoc = "^15.0.1"
[tool.poetry.scripts]
start = "tickets_plus.__main__:main"
migrate = "toolbox.migrate:main"
nuke = "toolbox.nuke:main"
[tool.yapf]
based_on_style = "google"
column_limit = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"