-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
42 lines (35 loc) · 894 Bytes
/
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
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "asyncpg.*"
ignore_missing_imports = true
[tool.ruff]
extend-select = ["I"]
[tool.poetry]
name = "wires"
version = "0.1.0"
description = "A bot with random features I want"
authors = ["CircuitSacul <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
app = "wires.main:run_app"
create-migrations = "wires.main:create_migrations"
apply-migrations = "wires.main:apply_migrations"
[tool.poetry.dependencies]
python = "^3.11,<3.12"
hikari = "==2.0.0.dev122"
hikari-crescent = "^0.6.5"
apgorm = "^1.0.0b14"
python-dotenv = "^1.0.0"
hikari-flare = "^0.1.3"
regex-rs = "^0.2.4"
floodgate-rs = "^0.1.3"
hikari-toolbox = "^0.1.5"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
ruff = "^0.0.286"
black = "^23.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"