-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 815 Bytes
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 815 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
[tool.poetry]
name = "elkplot"
version = "0.3.1"
description = "A library for making and executing generative art for the Axidraw line of pen plotters."
authors = ["El Kaplan <kaplan.el.j@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.12"
pyserial = "^3.5"
tqdm = "^4.64.1"
shapely = "^2.0.1"
pyglet = "1.5.27,<1.6.0"
svg-path = "^6.2"
rtree = "^1.0.1"
hypothesis = "^6.67.1"
click = "^8.1.3"
pint = "^0.22"
scipy = "^1.10.1"
pytest = "^7.4.3"
mkdocs-material = "^9.5.2"
mkdocstrings = "^0.24.0"
mkdocstrings-python = "^1.7.5"
twine = "^4.0.2"
build = "^1.0.3"
pygame = "^2.6.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.1"
plotly = "^5.15.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
elk = "elkplot.cli:cli"