-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (41 loc) · 1.38 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tikzplotly"
version = "0.2.2"
description = "Convert plotly figures to LaTeX / TikZ figures"
readme = "README.md"
authors = [{name = "Thomas Saigre", email = "tikzplotly@outlook.fr"}]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = ["plotly", "latex", "tikz", "figure", "conversion", "graphics"]
dependencies = [
"numpy",
"plotly",
"pillow",
"kaleido"
]
[project.optional-dependencies]
dev = ["pandas"]
[project.urls]
Code = "https://github.com/thomas-saigre/tikzplotly"
Issues = "https://github.com/thomas-saigre/tikzplotly/issues"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:png image has not been reduced.*:UserWarning",
"ignore:Text template is not supported yet.:UserWarning",
]