-
Notifications
You must be signed in to change notification settings - Fork 91
/
pyproject.toml
40 lines (32 loc) · 983 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
[tool.poetry]
name = "svg2tikz"
version = "3.2.0"
description = "Tools for converting SVG graphics to TikZ/PGF code"
authors = ["ldevillez <louis.devillez@gmail.com>", " Kjell Magne Fauske <kjellmf@gmail.com>"]
maintainers = ["ldevillez <louis.devillez@gmail.com>"]
license = "GPL-2.0-or-later"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
lxml = "^4.9.2"
inkex = "^1.2.2"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.0.0"
sphinx-click = "^4.4.0"
sphinx-copybutton = "^0.5.1"
sphinxext-opengraph = "^0.7.5"
furo = "^2023.9.10"
sphinx-argparse = "^0.4.0"
[tool.poetry.group.dev.dependencies]
black = ">=23.1,<25.0"
pylint = "^2.16.2"
coverage = "^7.5.1"
[[tool.poetry.source]]
name = "inkex_gitlab"
url = "https://gitlab.com/api/v4/projects/40060814/packages/pypi/simple"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
svg2tikz = "svg2tikz.tikz_export:main_cmdline"