-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 918 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 918 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
37
38
39
40
41
42
43
44
[tool.poetry]
name = "shapepy"
version = "1.1.7"
description = "Geometric 2D library"
authors = ["Carlos Adir <carlos.adir.leite@gmail.com>"]
readme = "README.md"
packages = [{ include = "shapepy", from = "src" }]
[tool.poetry.dependencies]
numpy = "^1.0.0"
matplotlib = "^3.4.0"
pynurbs = "^1.0.7"
python = "^3.9"
setuptools = { version = "*", python = ">=3.12" }
[tool.poetry.dev-dependencies]
pytest = "*"
pynurbs = "*"
black = "*"
isort = "*"
flake8 = "*"
pylint = "*"
pre-commit = "^3.0.0"
coverage = "^7"
pytest-cov = "^6"
pytest-order = "^1.0"
pytest-timeout = "^1.0"
pytest-dependency = "^0.6"
[tool.poetry.group.dev.dependencies]
scriv = {extras = ["toml"], version = "^1.3.1"}
[tool.poetry.extras]
mesh = ["pygmsh"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.scriv]
version = "literal: src/shapepy/__init__.py: __version__"
[tool.black]
line-length = 79