-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (56 loc) · 2.23 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (56 loc) · 2.23 KB
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
60
61
[tool.poetry]
name = "lacecore"
version = "3.0.0a4"
description = "Polygonal meshes optimized for cloud computation"
authors = ["Paul Melnikow <github@paulmelnikow.com>", "Metabolize, Minnow Software, Body Labs, and other contributors"]
license = "BSD-2-Clause"
include = ["CHANGELOG.md"]
exclude = ["**/test_*.py"]
homepage = "https://github.com/lace/lacecore"
repository = "https://github.com/lace/lacecore"
documentation = "https://lacecore.readthedocs.io/en/stable/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
convert_units = "lacecore_cli.convert_units:convert_units"
[tool.poetry.dependencies]
python = ">=3.10,<4"
click = {version = ">=8.1.3,<9", optional = true}
numpy = "*"
ounce = ">=1.1.0,<2.0"
polliwog = ">=3.0.0a3"
# polliwog = {git = "https://github.com/lace/polliwog.git", branch = "slice-mapping"}
tinymetabobjloader = {version = "2.0.0rc14.dev2", optional = true}
vg = ">=2.0.0"
black = {version = "26.3.1", optional = true}
coverage = {version = "7.13.4", optional = true}
sh = {version = ">=2.0", optional = true}
flake8 = {version = "7.3.0", optional = true}
flake8-import-order = {version = "0.19.2", optional = true}
myst-parser = {version = "4.0.1", optional = true}
pytest = {version = "9.0.2", optional = true}
pytest-cov = {version = "7.0.0", optional = true}
setuptools = {version = "82.0.0", optional = true}
Sphinx = {version = "8.1.3", optional = true}
sphinxcontrib-apidoc = {version = "0.6.0", optional = true}
[tool.poetry.extras]
cli = ["click", "tinymetabobjloader"]
obj = ["tinymetabobjloader"]
doc = ["sh", "click", "sphinx", "sphinxcontrib-apidoc", "myst-parser"]
lint = ["sh", "click", "setuptools", "flake8", "flake8-import-order"]
format = ["sh", "click", "black"]
test = ["sh", "click", "pytest", "pytest-cov", "coverage"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
fail_under = 100.0
omit = ["**/test_*.py"]