Update project description and use in both, README.md and setup.py
This commit is contained in:
parent
e0bfad272b
commit
c089448bb5
2 changed files with 13 additions and 4 deletions
|
|
@ -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).
|
Scour is open-source and licensed under [Apache License 2.0](https://github.com/codedread/scour/blob/master/LICENSE).
|
||||||
|
|
||||||
|
|
|
||||||
11
setup.py
11
setup.py
|
|
@ -22,15 +22,20 @@ import re
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
LONGDESC = """
|
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
|
Website
|
||||||
- http://www.codedread.com/scour/ (original website)
|
- http://www.codedread.com/scour/ (original website)
|
||||||
- https://github.com/codedread/scour (today)
|
- https://github.com/scour-project/scour (today)
|
||||||
|
|
||||||
Authors:
|
Authors:
|
||||||
- Jeff Schiller, Louis Simard (original authors)
|
- Jeff Schiller, Louis Simard (original authors)
|
||||||
- Tobias Oberstein (maintainer)
|
- Tobias Oberstein (maintainer)
|
||||||
|
- Eduard Braun (maintainer)
|
||||||
"""
|
"""
|
||||||
|
|
||||||
VERSIONFILE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "scour", "__init__.py")
|
VERSIONFILE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "scour", "__init__.py")
|
||||||
|
|
@ -52,7 +57,7 @@ setup(
|
||||||
license='Apache License 2.0',
|
license='Apache License 2.0',
|
||||||
author='Jeff Schiller',
|
author='Jeff Schiller',
|
||||||
author_email='codedread@gmail.com',
|
author_email='codedread@gmail.com',
|
||||||
url='https://github.com/codedread/scour',
|
url='https://github.com/scour-project/scour',
|
||||||
platforms=('Any'),
|
platforms=('Any'),
|
||||||
install_requires=['six>=1.9.0'],
|
install_requires=['six>=1.9.0'],
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue