allow direct calling of module

This commit is contained in:
Tobias Oberstein 2013-10-26 17:47:42 +02:00
parent 8dc6137373
commit 3353500845
2 changed files with 86 additions and 7 deletions

View file

@ -18,15 +18,28 @@
from setuptools import setup, find_packages
LONGDESC = """
Scour is a SVG optimizer/sanitizer that can be used to produce SVGs for Web deployment.
Website
- http://www.codedread.com/scour/ (original website)
- https://github.com/oberstet/scour (today)
Authors:
- Jeff Schiller, Louis Simard (original authors)
- Tobias Oberstein (maintainer)
"""
setup (
name = 'scour',
version = '0.27',
description = 'Scour SVG Optimizer',
long_description = open("README.md").read(),
# long_description = open("README.md").read(),
long_description = LONGDESC,
license = 'Apache License 2.0',
author = 'Jeff Schiller',
author_email = 'codedread@gmail.com',
url = 'http://blog.codedread.com/',
url = 'https://github.com/oberstet/scour',
platforms = ('Any'),
install_requires = [],
packages = find_packages(),