1
- [tool . poetry ]
1
+ [project ]
2
2
name = " vpype"
3
3
version = " 1.15.0a0"
4
4
description = " The Swiss Army knife of vector graphics for pen plotters"
5
- authors = [" Antoine Beyeler <abeyeler@ab-ware.com>" ]
5
+ authors = [
6
+ { name = " Antoine Beyeler" , email = " abeyeler@ab-ware.com>" }
7
+ ]
6
8
license = " MIT"
7
9
readme = " README.md"
8
- homepage = " https://github.com/abey79/vpype"
9
- documentation = " https://vpype.readthedocs.io/en/latest/"
10
- classifiers = [
11
- " Development Status :: 5 - Production/Stable" ,
12
- " Environment :: Console" ,
13
- " Topic :: Artistic Software" ,
14
- " Topic :: Multimedia :: Graphics" ,
10
+ requires-python = " >=3.11, <3.14"
11
+ dynamic = [" classifiers" ]
12
+
13
+ dependencies = [
14
+ " asteval>=0.9.26" ,
15
+ " cachetools>=4.2.2" ,
16
+ " click>=8.0.1,<8.2.0" ,
17
+ " multiprocess>=0.70.11" ,
18
+ " numpy>=1.25,<3" ,
19
+ " pnoise>=0.2.0" ,
20
+ " pyphen>=0.14,<0.16" ,
21
+ " scipy>=1.6" ,
22
+ " Shapely>=1.8.2" ,
23
+ " svgelements>=1.6.10" ,
24
+ " svgwrite~=1.4" ,
25
+ " tomli>=2.0.0" ,
26
+ ]
27
+
28
+ [project .optional-dependencies ]
29
+ all = [
30
+ " matplotlib>=3.3.2" ,
31
+ " glcontext>=2.3.2" , # 2.3.2 needed to fix #200
32
+ " moderngl>=5.6.2,!=5.7.1,!=5.7.2" , # see moderngl/moderngl#525
33
+ " Pillow>=9.0.1" ,
34
+ " PySide6>=6.4.0.1,!=6.6.2" ,
15
35
]
36
+
37
+
38
+ [project .urls ]
39
+ documentation = " https://vpype.readthedocs.io/en/latest/"
40
+ repository = " https://github.com/abey79/vpype"
41
+
42
+ [project .scripts ]
43
+ vpype = " vpype_cli.cli:cli"
44
+
45
+
46
+ [tool .poetry ]
16
47
packages = [
17
48
{ include = " vpype" },
18
49
{ include = " vpype_cli" },
@@ -29,31 +60,14 @@ include = [
29
60
" vpype_viewer/qtviewer/resources/*" ,
30
61
]
31
62
32
- [tool .poetry .scripts ]
33
- vpype = " vpype_cli.cli:cli"
63
+ # Poetry autofills license and Python version related items.
64
+ classifiers = [
65
+ " Development Status :: 5 - Production/Stable" ,
66
+ " Environment :: Console" ,
67
+ " Topic :: Artistic Software" ,
68
+ " Topic :: Multimedia :: Graphics" ,
69
+ ]
34
70
35
- [tool .poetry .dependencies ]
36
- python = " >=3.10, <3.13"
37
-
38
- asteval = " >=0.9.26"
39
- cachetools = " >=4.2.2"
40
- click = " >=8.0.1,<8.2.0"
41
- multiprocess = " >=0.70.11"
42
- numpy = " >=1.25,<3"
43
- pnoise = " >=0.2.0"
44
- pyphen = " >=0.14,<0.16"
45
- scipy = " >=1.6"
46
- Shapely = " >=1.8.2"
47
- svgelements = " >=1.6.10"
48
- svgwrite = " ~1.4"
49
- tomli = " >=2.0.0"
50
-
51
- # additional dependencies for the viewer and the `show` command
52
- matplotlib = { version = " >=3.3.2" , optional = true }
53
- glcontext = { version = " >=2.3.2" , optional = true } # 2.3.2 needed to fix #200
54
- moderngl = { version = " >=5.6.2,!=5.7.1,!=5.7.2" , optional = true } # see moderngl/moderngl#525
55
- Pillow = { version = " >=9.0.1" , optional = true }
56
- PySide6 = { version = " >=6.4.0.1,!=6.6.2" , optional = true }
57
71
58
72
[tool .poetry .group .dev .dependencies ]
59
73
coverage = {extras = [" toml" ], version = " >=5.4" }
@@ -83,9 +97,6 @@ sphinx-click = ">=4.3.0"
83
97
sphinx-copybutton = " >=0.5.0"
84
98
85
99
86
- [tool .poetry .extras ]
87
- all = [" matplotlib" , " glcontext" , " moderngl" , " Pillow" , " PySide6" ]
88
-
89
100
[build-system ]
90
101
requires = [" poetry-core>=1.0.8" ]
91
102
build-backend = " poetry.core.masonry.api"
@@ -129,13 +140,10 @@ exclude_lines = [
129
140
' @(abc\.)?abstractmethod' ,
130
141
]
131
142
132
- [tool .black ]
133
- line-length = 95
134
- target-version = [" py39" , " py310" , " py311" ]
135
143
136
144
[tool .ruff ]
137
145
line-length = 95
138
- target-version = " py39 "
146
+ target-version = " py311 "
139
147
exclude = [" examples" , " scripts" ]
140
148
141
149
[tool .ruff .lint ]
0 commit comments