-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.9 KB
/
pyproject.toml
File metadata and controls
58 lines (53 loc) · 1.9 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
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openscad_docsgen"
version = "2.0.55"
authors = [
{ name="Revar Desmera", email="revarbat@gmail.com" },
]
maintainers = [
{ name="Revar Desmera", email="revarbat@gmail.com" },
]
description = "A processor to generate Markdown code documentation with images from OpenSCAD source comments."
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["openscad", "documentation generation", "docs generation", "docsgen"]
dependencies = [
"pillow>=10.3.0",
"PyYAML>=6.0",
"scipy>=1.15.3",
"imageio>=2.37.0",
"openscad_runner>=1.2.2",
]
[project.scripts]
openscad-docsgen = "openscad_docsgen:main"
openscad-mdimggen = "openscad_docsgen.mdimggen:mdimggen_main"
[dependency-groups]
dev = ["pytest>=8.0"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.urls]
"Homepage" = "https://github.com/belfryscad/openscad_docsgen"
"Repository" = "https://github.com/belfryscad/openscad_docsgen"
"Bug Tracker" = "https://github.com/belfryscad/openscad_docsgen/issues"
"Releases" = "https://github.com/belfryscad/openscad_docsgen/releases"
"Usage" = "https://github.com/belfryscad/openscad_docsgen/README.rst"
"Documentation" = "https://github.com/belfryscad/openscad_docsgen/WRITING_DOCS.md"