-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (59 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
71 lines (59 loc) · 1.66 KB
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
[tool.poetry]
name = "xontrib-mpl"
version = "0.2.0"
description = "Matplotlib hooks for xonsh, including the new 'mpl' alias that displays the current figure on the screen"
authors = ["Xonsh Maintainers <xore.004fdbd5c8e6589bdd80944b5b8d4100.show-sender@streams.zulipchat.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/xonsh/xontrib-mpl"
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",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
packages = [{ include = "xontrib" }]
[tool.poetry.urls]
Documentation = "https://github.com/xonsh/xontrib-mpl/blob/master/README.md"
Code = "https://github.com/xonsh/xontrib-mpl"
"Issue tracker" = "https://github.com/xonsh/xontrib-mpl/issues"
[tool.poetry.dependencies]
python = ">=3.11"
xonsh = ">=0.23.0"
matplotlib = ">=3.0"
numpy = ">=1.20"
[tool.poetry.group.dev.dependencies]
pytest = ">=8.0"
[build-system]
requires = ["poetry-core>=1.0.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
)/
'''