Mercurial > hg > WSGraph
view setup.py @ 12:421d5119e324
reluctantly make this a CLI entry point
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 10 Dec 2012 17:30:44 -0800 |
parents | 5abe00d24a2f |
children | 7459702bf574 |
line wrap: on
line source
""" setup packaging script for WSGraph """ import os version = "0.0" dependencies = ['webob'] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] wsgraph = wsgraph.web:main """ kw['install_requires'] = dependencies except ImportError: from distutils.core import setup kw['requires'] = dependencies try: here = os.path.dirname(os.path.abspath(__file__)) description = file(os.path.join(here, 'README.txt')).read() except IOError: description = '' setup(name='WSGraph', version=version, description="WSGI graph server", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/hg/WSGraph', license='MPL', packages=['wsgraph'], include_package_data=True, zip_safe=False, **kw )