-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (42 loc) · 992 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
40
41
42
43
44
45
46
47
48
49
50
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.black]
target-version = ["py38"]
[tool.isort]
profile = "black"
py_version = 38
[tool.mypy]
disallow_untyped_decorators = false
install_types = true
python_version = "3.8"
strict = true
[tool.poetry]
authors = ["Jérome Eertmans <[email protected]>"]
description = "Internet search based on selected text"
homepage = "https://github.com/jeertmans/selsearch"
keywords = ["manim", "slides", "plugin", "manimgl"]
license = "MIT"
name = "selsearch"
packages = [
{include = "selsearch"}
]
readme = "README.md"
repository = "https://github.com/jeertmans/selsearch"
version = "0.4.2"
[tool.poetry.dependencies]
appdirs = "^1.4.4"
click = "^8.1.3"
pynput = "^1.7.6"
pyperclip = "^1.8.2"
python = "^3.8"
rtoml = "^0.9.0"
pydantic = "^2.3.0"
[tool.poetry.plugins]
[tool.poetry.plugins."console_scripts"]
selsearch = "selsearch.__main__:cli"
[tool.ruff]
ignore = [
"E501"
]
target-version = "py38"