-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
74 lines (68 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = 'cogwatch'
version = '3.3.1'
description = 'Automatic hot-reloading for your discord.py (or other supported libaries) command files.'
authors = ['Rob Wagner <[email protected]>']
license = 'MIT'
readme = 'README.md'
homepage = 'https://github.com/robertwayne/cogwatch'
repository = 'https://github.com/robertwayne/cogwatch'
keywords = [
'discord.py',
'discord bot',
'cogs',
'hot-reload',
'nextcord',
'py-cord',
'pycord',
'disnake',
'discord4py',
]
classifiers = [
'Operating System :: OS Independent',
'Typing :: Typed',
'Topic :: Communications :: Chat',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
]
[tool.poetry.scripts]
fmt = 'scripts:fmt'
discord4py = 'scripts:discord4py'
discordpy = 'scripts:discordpy'
disnake = 'scripts:disnake'
nextcord = 'scripts:nextcord'
pycord = 'scripts:pycord'
[tool.poetry.dependencies]
python = '^3.10'
watchfiles = "^0.15"
[tool.poetry.group.dev.dependencies]
pytest = '^7.2'
black = '^22.12'
python-dotenv = "^0.21.1"
nextcord = "^2.4.1"
[tool.black]
line-length = 120
skip-string-normalization = 1
target-version = ['py38']
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| docs
| assets
| venv
)/
)
'''
[build-system]
requires = ['poetry-core>=1.0.0']
build-backend = 'poetry.core.masonry.api'