view setup.py @ 193:dc495f0b5ee8 default tip

[testing] toxify
author Jeff Hammel <k0scist@gmail.com>
date Sun, 13 Aug 2017 15:52:01 -0700
parents 411db53cb9fb
children
line wrap: on
line source

# -*- coding: utf-8 -*-"""

"""
setup packaging script for numerics python package
"""

import os

version = "0.2"
dependencies = ['numpy',
                'pandas',
                'matplotlib',
                'bokeh>=0.8.1',
                'python-dateutil',
                'tempita',
                'whichpy']

tests_require = ['pytest', 'tox']

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
    [console_scripts]
    bar-chart = numerics.bar:main
    cat-columns = numerics.cat_columns:main
    cleanse = numerics.clean:main
    display-fraction = numerics.text_display:main
    histogram = numerics.histogram:main
    interpolate = numerics.interpolation:main
    manipulate = numerics.manipulate:main
    normalize = numerics.normalize:main
    mean = numerics.mean:main
    median = numerics.median:main
    plot = numerics.plot:main
    read-csv = numerics.read:main
    smooth = numerics.smooth:main
    split-table = numerics.split_table:main
    sum = numerics.sum:main
    table2json = numerics.table:main
    types = numerics.convert:main
"""
# TODO:
#   fold = numerics.fold:main  # fold data through functions (reduce)
    kw['install_requires'] = dependencies
    kw['tests_require'] = tests_require
except ImportError:
    from distutils.core import setup
    kw['requires'] = dependencies

try:
    here = os.path.dirname(os.path.abspath(__file__))
    description = open(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
      )