-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (47 loc) · 1.58 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
[build-system]
requires = [
"setuptools>=61.0",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "openscad_runner"
version = "1.1.2"
authors = [
{ name="Revar Desmera", email="[email protected]" },
]
maintainers = [
{ name="Revar Desmera", email="[email protected]" },
]
description = "A Python library to interface with the OpenSCAD app."
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", "interface"]
dependencies = [
"Pillow>=7.2.0",
"pygifsicle>=1.0.2",
"apng>=0.3.4"
]
[project.urls]
"Homepage" = "https://github.com/belfryscad/openscad_runner"
"Repository" = "https://github.com/belfryscad/openscad_runner"
"Bug Tracker" = "https://github.com/belfryscad/openscad_runner/issues"
"Releases" = "https://github.com/belfryscad/openscad_runner/releases"
"Usage" = "https://github.com/belfryscad/openscad_runner/README.rst"
"Documentation" = "https://github.com/belfryscad/openscad_runner/README.rst"