Mercurial > hg > wsgintegrate
view setup.py @ 27:a983d9bb7003
README: streamlining
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 12 Apr 2017 13:36:34 -0700 |
parents | 9374bb82258e |
children | b3a950065844 |
line wrap: on
line source
from setuptools import setup import os version = '0.1.4' # description try: filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.txt') description = file(filename).read() except: description = '' dependencies = ['webob', 'pyloader'] setup(name='wsgintegrate', version=version, description='WSGI integration layer', long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='', author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/hg/wsgintegrate', license='GPL', packages=['wsgintegrate'], include_package_data=True, zip_safe=False, install_requires=dependencies, entry_points=""" [console_scripts] wsgintegrate = wsgintegrate.main:main """, )