-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (30 loc) · 893 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (30 loc) · 893 Bytes
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
[project]
name = "glow-plot"
version = "1.4.1"
description = "Adds a dark theme to plots and a glow effect to its lines."
authors = [
{ name = "Maik Engelhardt", email = "dontsendmesp4m@google.com" }
]
readme = "README.md"
requires-python = ">=3.10"
[tool.poetry]
name = "glow-plot"
version = "1.4.1"
description = "Adds a dark theme to plots and a glow effect to its lines."
authors = ["Maik Engelhardt <dontsendmesp4m@google.com>"]
packages = [{ include = "glow_plot"}]
include = [{ path = "glow_plot/styles", format = ["sdist", "wheel"]}]
[tool.poetry.dependencies]
python = "^3.10"
matplotlib = "^3.9.2"
[tool.poetry.group.dev.dependencies]
pandas = "^2.2.3"
numpy = "^2.1.1"
[tool.poetry.group.test.dependencies]
flake8 = "^7.1.1"
pytest = "^8.3.3"
ruff = "^0.6.8"
pytest-cov = "^5.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"