-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 1.03 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
[project]
name = "textual-plot"
version = "0.10.1"
description = "A native plotting widget for Textual apps"
readme = "README.md"
authors = [{ name = "David Fokkema", email = "davidfokkema@icloud.com" }]
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
dependencies = [
"numpy>=2.2.1",
"textual>=1.0.0",
"textual-hires-canvas>=0.14.0",
]
[project.urls]
Homepage = "https://github.com/davidfokkema/textual-plot"
Repository = "https://github.com/davidfokkema/textual-plot.git"
Issues = "https://github.com/davidfokkema/textual-plot/issues"
Changelog = "https://github.com/davidfokkema/textual-plot/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mkdocs-material>=9.7.0",
"mkdocstrings-python>=1.19.0",
"mypy>=1.14.1",
"pytest>=8.3.4",
"rust-just>=1.38.0",
"textual-dev>=1.7.0",
]
[project.scripts]
textual-plot = "textual_plot.demo:main"
[tool.mypy]
python_version = "3.10"
plugins = "numpy.typing.mypy_plugin"