-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
39 lines (34 loc) · 942 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
[tool.poetry]
authors = ["vduseev <[email protected]>"]
description = "Watch and rebuild your files like LiveServer"
documentation = "https://wutch.readthedocs.io"
homepage = "https://github.com/vduseev/wutch"
keywords = ["liveserver", "sphinx", "rebuild", "watcher", "watchdog"]
license = "Apache-2.0"
maintainers = ["vduseev <[email protected]>"]
name = "wutch"
readme = "README.md"
repository = "https://github.com/vduseev/wutch"
version = "1.0.12"
[tool.poetry.scripts]
wutch = "wutch:cli"
[tool.poetry.dependencies]
aiofiles = "^0.6.0"
aiohttp = "^3.7.3"
beautifulsoup4 = "^4.9.3"
ilexconf = "^0.9.5"
loguru = "^0.5.3"
python = "^3.8"
watchdog = "^1.0.2"
[tool.poetry.dev-dependencies]
Sphinx = "^3.4.1"
black = "^20.8b1"
bump2version = "^1.0.1"
ipython = "^7.19.0"
jedi = "0.17.2"
pydata-sphinx-theme = "^0.4.1"
[tool.black]
line-length = 78
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]