-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
41 lines (32 loc) · 979 Bytes
/
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 = "preprocess_cancellation"
version = "0.2.1"
description = "GCode processor to add klipper cancel-object markers"
readme = "README.md"
authors = ["Franklyn Tackitt <[email protected]>"]
repository = "https://github.com/kageurufu/cancelobject-preprocessor"
license = "GPL-3.0-only"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/kageurufu/cancelobject-preprocessor/issues"
[tool.poetry.scripts]
preprocess_cancellation = 'preprocess_cancellation:_main'
[tool.poetry.extras]
shapely = [ "shapely" ]
[tool.poetry.dependencies]
python = ">= 3.6.2"
shapely = { version = "*", optional = true }
[tool.poetry.dev-dependencies]
black = "*"
coverage = { version = "*", extras = ["toml"] }
isort = "*"
matplotlib = "*"
pyinstaller = "*"
pytest = "*"
pytest-cov = "*"
shapely = "*"
[tool.black]
line_length = 120
[tool.pytest.ini_options]
addopts = '-v --cov=preprocess_cancellation'
[tool.coverage.run]
branch = true