File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " svgpathtools"
7- version = " 1.7.0"
87description = " A collection of tools for manipulating and analyzing SVG Path objects and Bezier curves."
98readme = " README.md"
109authors = [
@@ -39,6 +38,7 @@ dependencies = [
3938 " svgwrite" ,
4039 " scipy"
4140]
41+ dynamic = [" version" ]
4242
4343[project .optional-dependencies ]
4444dev = [
@@ -58,9 +58,11 @@ include = ["svgpathtools*"]
5858[tool .setuptools ]
5959package-dir = {"" = " ." }
6060
61+ [tool .setuptools .dynamic ]
62+ version = {attr = " svgpathtools.__version__" }
63+
6164[tool .black ]
6265line-length = 120
6366
6467[tool .flake8 ]
65- max-line-length = 120
66-
68+ max-line-length = 120
Original file line number Diff line number Diff line change 11# flake8: noqa
2+ __version__ = "1.7.0"
23from .bezier import (
34 bezier_point ,
45 bezier2polynomial ,
You can’t perform that action at this time.
0 commit comments