view setup.py @ 27:f865bc916593

stub for type inference
author Jeff Hammel <k0scist@gmail.com>
date Tue, 07 Oct 2014 21:04:36 -0700
parents 5245d7d0c1bf
children c2c92c8da611
line wrap: on
line source

"""
setup packaging script for numerics
"""

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]
    interpolate = numerics.interpolation:main
    plot = numerics.plot:main
    read-csv = numerics.read:main
    types = numerics.convert: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
      )