Mercurial > hg > whichpy
view setup.py @ 0:bcd62e6d822c
initial commit
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 20 Feb 2017 10:27:27 -0800 |
parents | |
children | f4b604d44ff5 |
line wrap: on
line source
import os from setuptools import setup try: here = os.path.dirname(os.path.abspath(__file__)) description = open(os.path.join(here, 'README.txt')).read() except IOError: description = None version = '0.0' deps = [] setup(name='whichpy', version=version, description="python equivalent of which", 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='https://pypi.python.org/pypi/whichpy', license='', py_modules=['which'], packages=[], include_package_data=True, zip_safe=False, install_requires=deps, entry_points=""" # -*- Entry points: -*- [console_scripts] which.py = which:main """, )