-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
53 lines (50 loc) · 1.81 KB
/
pyproject.toml
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
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "openscad_docsgen"
version = "2.0.44"
authors = [
{ name="Revar Desmera", email="[email protected]" },
]
maintainers = [
{ name="Revar Desmera", email="[email protected]" },
]
description = "A processor to generate Markdown code documentation with images from OpenSCAD source comments."
readme = "README.rst"
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"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",
"openscad_runner>=1.1.1"
]
[project.scripts]
openscad-docsgen = "openscad_docsgen:main"
openscad-mdimggen = "openscad_docsgen.mdimggen:mdimggen_main"
[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"