forked from SolidCode/SolidPython
-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
42 lines (39 loc) · 1.09 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
[tool.poetry]
name = "solidpython2"
version = "2.1.0"
description = "Python interface to the OpenSCAD declarative geometry language"
authors = ["jeff"]
homepage = "https://github.com/jeff-dh/SolidPython"
repository = "https://github.com/jeff-dh/SolidPython"
license = "LGPL-2.1"
readme = "README.rst"
keywords = [
"3D",
"CAD",
"CSG",
"constructive solid geometry",
"geometry",
"modeling",
"OpenSCAD",
]
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
]
packages=[
{ include = "solid2"}
]
[tool.poetry.dependencies]
python = ">=3.7"
ply = "^3.11"
setuptools = ">=65.6.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"