We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1aa003 commit c393503Copy full SHA for c393503
setup.py
@@ -3,9 +3,11 @@
3
4
from setuptools import setup
5
6
+version_str = "0.3.3"
7
+
8
setup(
9
name="svgutils",
- version="0.3.2",
10
+ version=version_str,
11
description="Python SVG editor",
12
long_description="""This is an utility package that helps to edit and
13
concatenate SVG files. It is especially directed at scientists preparing
@@ -30,5 +32,7 @@
30
32
],
31
33
package_dir={"": "src"},
34
install_requires=["lxml"],
- download_url="https://github.com/btel/svg_utils/archive/v0.3.2.tar.gz",
35
+ download_url="https://github.com/btel/svg_utils/archive/v{}.tar.gz".format(
36
+ version_str
37
+ ),
38
)
0 commit comments