Mercurial > hg > numerics
view setup.py @ 93:b755a8d946de
stub: txt display
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 02 Mar 2015 18:35:16 -0800 |
parents | 7dd1b18c9f78 |
children | a027870e7a93 |
line wrap: on
line source
""" setup packaging script for numerics python package """ import os version = "0.0" dependencies = ['numpy', 'pandas', 'matplotlib', 'bokeh'] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] cat-columns = numerics.cat_columns:main histogram = numerics.histogram:main interpolate = numerics.interpolation:main manipulate = numerics.manipulate:main plot = numerics.plot:main read-csv = numerics.read:main smooth = numerics.smooth:main sum = numerics.sum:main types = numerics.convert:main """ # TODO: # cleanse = numerics.clean:main # cleans up outliers # fold = numerics.fold: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='numerics', version=version, description="personal experiments in numerics + plotting", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com', url='http://k0s.org/hg/numerics', license='', packages=['numerics'], include_package_data=True, zip_safe=False, **kw )