-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 810 Bytes
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
[tool.poetry]
name = "kithubsys"
version = "1.0.0"
description = "A discord bot stack for KINDAI Info-Tech HUB"
authors = ["Yuki Watanabe <ukwhatn@gmail.com>"]
package-mode = false
[tool.poetry.dependencies]
python = "3.12.*"
[tool.poetry.group.discord]
optional = true
[tool.poetry.group.discord.dependencies]
sentry-sdk = "^2.3.1"
py-cord = "^2.5.0"
bs4 = "^0.0.2"
httpx = "^0.28.0"
pytz = "^2025.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
mypy = "^1.11.1"
isort = "^6.0.0"
black = "^25.1.0"
[tool.poetry.group.db]
optional = true
[tool.poetry.group.db.dependencies]
sqlalchemy = "^2.0.32"
alembic = "^1.13.2"
psycopg2-binary = "^2.9.9"
pydantic = "^2.8.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"