-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
37 lines (34 loc) · 1.07 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
[tool.poetry]
name = "textual-terminal"
version = "0.3.0"
description = "A terminal emulator widget for Textual."
authors = ["Mischa Schindowski <mschindowski@gmail.com>"]
readme = "README.md"
license = "LGPL-3.0-or-later"
packages = [{include = "textual_terminal"}]
repository = "https://github.com/mitosch/textual-terminal"
keywords = ["textual", "textual terminal", "textual terminal emulator", "textual subprocess"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
]
include = [
"LICENSE.md",
]
[tool.poetry.dependencies]
python = "^3.7"
textual = ">=0.8.0"
pyte = "^0.8.1"
[tool.poetry.group.dev.dependencies]
textual = { version = ">=0.8.0", extras = ["dev"] }
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.20.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"