-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 962 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 962 Bytes
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
[tool.poetry]
name = "Super-SCAD"
version = "0.11.7"
description = "An advanced Python application and library for generating 2D and 3D models in OpenSCAD"
authors = ["P.R. Water <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/SuperSCAD/SuperSCAD"
documentation = "https://www.superscad.org/"
keywords = ["OpenSCAD", "SuperSCAD"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Software Development :: Code Generators",
]
[tool.poetry.dependencies]
python = "^3.13.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.8.0"
[build-system]
requires = ["poetry-core"]
build-common = "poetry.core.masonry.api"