Mercurial > hg > WSGraph
diff setup.py @ 1:5abe00d24a2f
make setup.py accurate
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 09 Dec 2012 10:25:50 -0800 |
parents | cfcfa093e4b4 |
children | 421d5119e324 |
line wrap: on
line diff
--- a/setup.py Sun Dec 09 10:21:43 2012 -0800 +++ b/setup.py Sun Dec 09 10:25:50 2012 -0800 @@ -5,7 +5,7 @@ import os version = "0.0" -dependencies = ['MakeItSo', 'webob'] +dependencies = ['webob'] # allow use of setuptools/distribute or distutils kw = {} @@ -13,8 +13,6 @@ from setuptools import setup kw['entry_points'] = """ [console_scripts] - WSGraph = WSGraph.main:main - WSGraph-template = WSGraph.template:main """ kw['install_requires'] = dependencies except ImportError: @@ -36,7 +34,7 @@ author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/hg/WSGraph', - license='', + license='MPL', packages=['wsgraph'], include_package_data=True, zip_safe=False,