Mercurial > hg > wsgintegrate
view setup.py @ 33:b582d2e32d92 default tip
bump version for release
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sun, 02 Jun 2024 16:17:49 -0700 |
parents | 840d60377c88 |
children |
line wrap: on
line source
import os from setuptools import setup version = '0.1.5' # description try: filename = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.txt') description = open(filename).read() except: description = '' dependencies = ['webob', 'pyloader>=0.1.5'] 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, tests_require=['tox'], entry_points=""" [console_scripts] wsgintegrate = wsgintegrate.main:main """ )