-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
82 lines (61 loc) · 1.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "xontrib-bashisms"
version = "0.0.5"
license = {file = "LICENSE"}
description = "Bash-like interactive mode extensions for the xonsh shell."
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: System :: Shells",
"Topic :: System :: System Shells",
"Topic :: Terminals",
]
requires-python = ">=3.8"
dependencies = ["xonsh>=0.12.5"]
authors = [
{ name = "xontrib-bashisms", email = "[email protected]" },
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/xonsh/xontrib-bashisms"
Documentation = "https://github.com/xonsh/xontrib-bashisms/blob/master/README.md"
Code = "https://github.com/xonsh/xontrib-bashisms"
"Issue tracker" = "https://github.com/xonsh/xontrib-bashisms/issues"
[project.optional-dependencies]
dev = ["pytest>=7.0"]
[build-system]
requires = [
"setuptools>=62",
"wheel", # for bdist package distribution
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["xontrib"]
package-dir = {xontrib = "xontrib"}
platforms = ["any"]
include-package-data = false
[tool.setuptools.package-data]
xontrib = ["*.xsh"]
[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
)/
'''