Mercurial > hg > clwapp
view setup.py @ 6:1c4b7c1f11ad
py3
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 24 Nov 2020 10:50:38 -0800 |
parents | 6ec69ecbc072 |
children |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os version = "0.1.1" setup(name='clwapp', version=version, description="Command Line Web APP", long_description="""gives the output from a command line application TTW """, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com', url='', license="", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'WebOb', 'Paste', 'PasteScript', ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] main = clwapp.factory:factory """, )