-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
60 lines (55 loc) · 1.78 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
60
[tool.poetry]
name = "polliwog"
version = "3.0.0-alpha.9"
description = "2D and 3D computational geometry library"
authors = ["Paul Melnikow <[email protected]>", "Metabolize, Body Labs, and other contributors"]
license = "BSD-2-Clause"
include = ["CHANGELOG.md", "schema.json"]
exclude = ["**/test_*.py", "**/*_test_data.py", "**/*_test_assets.npz", "**/_try_inflection_points.py"]
homepage = "https://polliwog.dev/"
repository = "https://github.com/lace/polliwog"
documentation = "https://polliwog.dev/"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Manufacturing",
"Topic :: Artistic Software",
"Topic :: Multimedia :: Graphics :: 3D Modeling",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.7,<4"
numpy = "*"
ounce = ">=1.1.0,<2.0"
jsonschema = {version = ">=4,<5", optional = true}
simplejson = {version = ">=3,<4", optional = true}
vg = ">=2.0.0"
[tool.poetry.extras]
serialization = ["jsonschema", "simplejson"]
[tool.poetry.dev-dependencies]
black = "23.3.0"
click = "8.1.7"
coverage = "7.2.7"
executor = "23.2"
flake8 = "5.0.4"
flake8-import-order = "0.18.2"
myst-parser = "0.18.1"
pytest = "7.4.4"
pytest-cov = "4.1.0"
Sphinx = "4.3.2"
sphinxcontrib-apidoc = "0.3.0"
[build-system]
# Lint requires setuptools.
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.report]
fail_under = 100.0
omit = [
"**/test_*.py",
"polliwog/transform/make_rodrigues_test_data.py",
"polliwog/polyline/_try_inflection_points.py",
"polliwog/transform/_testing_helper.py",
]