From c089448bb58cdc92e928a8ff961683c6ab35a4a8 Mon Sep 17 00:00:00 2001 From: Eduard Braun Date: Sun, 6 Aug 2017 04:38:33 +0200 Subject: [PATCH] Update project description and use in both, README.md and setup.py --- README.md | 6 +++++- setup.py | 11 ++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d45b067..fd8c324 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,11 @@ --- -Scour is a Python tool that takes an SVG file and produces a cleaner and more concise file. It is intended to be used **after** exporting to SVG with a GUI editor, such as Inkscape or Adobe Illustrator. +Scour is an SVG optimizer/cleaner that reduces the size of scalable vector graphics by optimizing structure and removing unnecessary data written in Python. + +It can be used to create streamlined vector graphics suitable for web deployment, publishing/sharing or further processing. + +The goal of Scour is to output a file that renderes identically at a fraction of the size by removing a lot of redundant information created by most SVG editors. Optimization options are typically lossless but can be tweaked for more agressive cleaning. Scour is open-source and licensed under [Apache License 2.0](https://github.com/codedread/scour/blob/master/LICENSE). diff --git a/setup.py b/setup.py index 5149e88..0bcf8d1 100644 --- a/setup.py +++ b/setup.py @@ -22,15 +22,20 @@ import re from setuptools import find_packages, setup LONGDESC = """ -Scour is a SVG optimizer/sanitizer that can be used to produce SVGs for Web deployment. +Scour is an SVG optimizer/cleaner that reduces the size of scalable vector graphics by optimizing structure and removing unnecessary data. + +It can be used to create streamlined vector graphics suitable for web deployment, publishing/sharing or further processing. + +The goal of Scour is to output a file that renderes identically at a fraction of the size by removing a lot of redundant information created by most SVG editors. Optimization options are typically lossless but can be tweaked for more agressive cleaning. Website - http://www.codedread.com/scour/ (original website) - - https://github.com/codedread/scour (today) + - https://github.com/scour-project/scour (today) Authors: - Jeff Schiller, Louis Simard (original authors) - Tobias Oberstein (maintainer) + - Eduard Braun (maintainer) """ VERSIONFILE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "scour", "__init__.py") @@ -52,7 +57,7 @@ setup( license='Apache License 2.0', author='Jeff Schiller', author_email='codedread@gmail.com', - url='https://github.com/codedread/scour', + url='https://github.com/scour-project/scour', platforms=('Any'), install_requires=['six>=1.9.0'], packages=find_packages(),