forked from SolidCode/SolidPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 1007 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 1007 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
31
32
33
34
35
36
[tool.poetry]
name = "solidpython"
version = "0.3.3"
description = "Python interface to the OpenSCAD declarative geometry language"
authors = ["Evan Jones <evan_t_jones@mac.com>"]
url='https://github.com/SolidCode/SolidPython'
license = "LGPL-2.1"
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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.0"
euclid3 = "^0.1.0"
pypng = "^0.0.19"
PrettyTable = "^0.7"
regex = "^2019.4"
[tool.poetry.dev-dependencies]
tox = "^tox 3.11"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"