forked from robertwayne/cogwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (53 loc) · 1.26 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
[tool.poetry]
name = "cogwatch"
version = "2.1.0"
description = "Automatic hot-reloading for your discord.py command files."
authors = ["Rob Wagner <13954303+robertwayne@users.noreply.github.com>"]
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']
classifiers=[
'Operating System :: OS Independent',
'Typing :: Typed',
'Topic :: Communications :: Chat',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
]
[tool.poetry.scripts]
example = 'runner:__poetry_run'
[tool.poetry.dependencies]
python = "^3.7"
"discord.py" = "^1.5"
watchgod = "0.7"
[tool.poetry.dev-dependencies]
pytest = "^6.1"
black = "^20.8b1"
python-dotenv = '^0.15'
uvloop = "^0.15.1"
[tool.black]
line-length = 120
target-version = ['py37']
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"