-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.08 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
[project]
name = "tesserax"
version = "0.11.0"
description = "A pure-Python library for rendering professional CS graphics."
readme = "README.md"
authors = [
{ name = "Alejandro Piad", email = "apiad@apiad.net" }
]
requires-python = ">=3.12"
keywords = ["visualization", "svg", "graphics", "diagrams", "animation", "physics", "charts"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Graphics :: Presentation",
"Topic :: Scientific/Engineering :: Visualization",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.optional-dependencies]
export = [
"imageio[ffmpeg]>=2.37.2",
"cairosvg>=2.8.2",
"resvg-py>=0.2.0",
"pillow>=10.0.0",
]
[dependency-groups]
dev = [
"black>=26.1.0",
"ipython>=9.9.0",
"jupyter>=1.1.1",
"pytest>=9.0.2",
"pytest-coverage>=0.0",
"ruff>=0.14.14",
]