-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.1 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
[tool.poetry]
name = "hobart_svg"
version = "1.0.0a0"
description = "Render polygons, polylines, and mesh cross sections to SVG"
authors = ["Metabolize LLC"]
license = "BSD-2-Clause"
include = ["CHANGELOG.md"]
exclude = ["**/test_*.py"]
repository = "https://github.com/lace/hobart_svg"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.9,<4"
click = ">=8.1.3,<9.0"
hobart = "1.1.1"
lacecore = {version= "3.0.0a2", extras = ["obj"]}
numpy = "*"
polliwog = "3.0.0a8"
svgwrite = ">=1.3.1, <2.0"
tri-again = "2.0.0a0"
vg = ">=2.0"
[tool.poetry.dev-dependencies]
black = "22.12.0"
executor = "23.2"
flake8 = "5.0.4"
flake8-import-order = "0.18.2"
pytest = "7.2.0"
[build-system]
# Lint requires setuptools.
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"