Programmatically generate SVG (vector) images, animations, and interactive Jupyter widgets

Increment version

Changed files
+4 -2
+4 -2
setup.py
···
from setuptools import setup, find_packages
+
version = '1.0.1'
+
try:
with open('DESCRIPTION.rst', 'r') as f:
longDesc = f.read()
···
setup(
name = 'drawSvg',
packages = find_packages(),
-
version = '1.0.0',
+
version = version,
description = 'This is a Python 3 library for programmatically generating SVG images (vector drawings) and rendering them or displaying them in an iPython notebook.',
long_description = longDesc,
author = 'Casey Duckering',
#author_email = '',
url = 'https://github.com/cduck/drawSvg',
-
download_url = 'https://github.com/cduck/drawSvg/archive/1.0.0.tar.gz',
+
download_url = 'https://github.com/cduck/drawSvg/archive/{}.tar.gz'.format(version),
keywords = ['SVG', 'draw', 'graphics', 'iPython', 'Jupyter'],
classifiers = [
'License :: OSI Approved :: MIT License',