-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.34 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.34 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
[project]
name = "uplt-py"
description = "Unified API and style for Python plotting libraries"
version = "0.9.1"
authors = [
{ name = "Dmitry Makarov", email="makarovdmv@gmail.com" },
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
requires-python = ">=3.10"
dependencies = [
"numpy >= 1.21, < 3.0", # 1.21: ArrayLike and extended annotations: https://numpy.org/devdocs/reference/typing.html
"pillow >= 11.3", # versions < 11.3 are vulnerable: https://security.snyk.io/package/pip/pillow
"scipy >= 1.11, < 2.0",
"typing-extensions >= 4.15, < 5.0",
]
[project.optional-dependencies]
matplot = [
"matplotlib >= 3.7, < 4.0"
]
plotly = [
'plotly >= 5.16, < 7.0',
'kaleido >= 0.4, < 2.0',
]
all = [ "uplt-py[matplot, plotly]" ]
[project.urls]
Repository = "https://github.com/makarovdi/uplt"
Issues = "https://github.com/makarovdi/uplt/issues"
Changelog = "https://github.com/makarovdi/uplt/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["uplt", "uplot"]