forked from SolidCode/SolidPython
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (52 loc) · 1.49 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
54
55
56
57
58
59
[tool.poetry]
name = "solidpython"
version = "1.1.3"
description = "Python interface to the OpenSCAD declarative geometry language"
authors = ["Evan Jones <[email protected]>"]
homepage = "https://github.com/SolidCode/SolidPython"
repository = "https://github.com/SolidCode/SolidPython"
documentation = "https://solidpython.readthedocs.io/en/latest/"
license = "LGPL-2.1"
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 = "solid"}
]
[tool.poetry.dependencies]
python = ">=3.7"
euclid3 = "^0.1.0"
pypng = "^0.0.19"
PrettyTable = "=0.7.2"
ply = "^3.11"
[tool.poetry.dev-dependencies]
tox = "^tox 3.11"
[build-system]
requires = [
"poetry>=0.12",
# See https://github.com/pypa/setuptools/issues/2353#issuecomment-683781498
# for the rest of these requirements,
# -ETJ 31 December 2020
"setuptools>=30.3.0,<50",
"wheel",
"pytest-runner",
"setuptools_scm>=3.3.1",
]
build-backend = "poetry.masonry.api"