-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (36 loc) · 1.02 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
[build-system]
requires = ['poetry-core>=1.0.0']
build-backend = 'poetry.core.masonry.api'
[tool.poetry]
name = 'Swish'
version = '0.0.1'
description = ''
authors = []
[tool.poetry.dependencies]
python = '^3.10'
aiohttp = '~3.8.0'
colorama = '~0.4.0'
toml = '~0.10.0'
typing_extensions = '~4.3.0'
yt-dlp = '~2022.7.0'
dacite = '~1.6.0'
'discord.py' = { git = 'https://github.com/Rapptz/discord.py' }
# 'build' extras
pyinstaller = { version = '*', optional = true }
# 'dev' extras
jishaku = { version = '*', optional = true }
[tool.poetry.extras]
build = ['pyinstaller']
dev = ['jishaku']
[tool.pyright]
include = ['swish']
pythonVersion = '3.10'
typeCheckingMode = 'strict'
useLibraryCodeForTypes = true
reportUnknownMemberType = false
reportPrivateUsage = false
reportImportCycles = false
reportMissingTypeStubs = false
reportUnknownArgumentType = false
reportConstantRedefinition = false
reportPrivateImportUsage = false