-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.06 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
[tool.black]
line-length = 160
include = '\.pyi?$'
force-exclude = '''
/(
| lib
)/
'''
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
| venv
| \.history
)/
'''
[tool.isort]
profile = "black"
skip = ["migrations", ".env", "venv", ".local", ".history", ".vscode"]
skip_glob = ["lib/*"]
[tool.poetry]
name = "easy-dictionary"
version = "2.3.0"
description = "An offline English dictionary plugin for Wox based on Webster's Unabridged English Dictionary."
authors = ["Ashutosh <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
homepage = "https://www.wox.one/plugin/351"
repository = "https://github.com/ashu-tosh-kumar/todo_notifier"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0"
black = "^24.3.0"
coverage = "^7.4.4"
flake8 = "^7.0.0"
pytest = "^8.1.1"
isort = "^5.13.2"
syrupy = "^4.6.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"