-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
42 lines (38 loc) · 1009 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]
check_untyped_defs = true
ignore_errors = false
ignore_missing_imports = true
python_version = "3.10"
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.poetry]
authors = ["Ash Arnold <[email protected]>"]
description = "Dragonpaw's Discord Bot"
license = "Apache"
name = "dragonpaw-bot"
version = "2.0.0"
[tool.poetry.dependencies]
aiohttp = "^3.8.3"
emojis = "^0.7.0"
hikari = { extras = ["speedups"], version = "^2.0.0.dev116" }
hikari-lightbulb = "^2.3.1"
palettable = "^3.3.0"
pydantic = "^1.10.4"
python = "^3.9.4,<3.11"
python-dotenv = "^0.21.1"
safer = "^4.4.1"
setuptools = "^67.1.0" # Neded by palettable
toml = "^0.10.2"
uvloop = "^0.17.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
ipython = "^8.9.0"
isort = "^5.12.0"
mypy = "^1.0.0"
pylint = "^2.16.1"
types-toml = "^0.10.8.2"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]