# HG changeset patch # User Jeff Hammel # Date 1355077550 28800 # Node ID 5abe00d24a2f37710a73fb44e0452cc407046d6e # Parent cfcfa093e4b4c432f57521735331903694e6a3bc make setup.py accurate diff -r cfcfa093e4b4 -r 5abe00d24a2f setup.py --- 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,