-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (54 loc) · 1.41 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
[tool.poetry]
name = "xontrib-skim"
version = "0.0.6"
description = "skim (fuzzy finder) integration"
authors = ["Evgeny <[email protected]>"]
license = "MIT"
readme = "ReadMe.md"
repository = "https://github.com/eugenesvk/xontrib-skim"
keywords = ['xontrib', 'xonsh']
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
"Programming Language :: Python :: 3",
]
packages = [{ include = "xontrib" }]
[tool.poetry.urls]
Homepage = "https://github.com/eugenesvk/xontrib-skim"
Documentation = "https://github.com/eugenesvk/xontrib-skim/blob/master/ReadMe.md"
Code = "https://github.com/eugenesvk/xontrib-skim"
"Issue tracker" = "https://github.com/eugenesvk/xontrib-skim/issues"
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
xonsh = ">=0.18.2"
prompt-toolkit = "^3.0.47"
[tool.poetry.dev-dependencies]
pytest = ">=8.2"
[build-system]
requires = ["poetry-core>=1.5.0"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
include = '\.pyi?$'
force-exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.pytest_cache
| \.tox
| \.vscode
| \.venv
| _build
| buck-out
| build
| dist
| disk-cache.sqlite3
)/
'''