view setup.py @ 2:2d7d3034db18

wip
author Jeff Hammel <k0scist@gmail.com>
date Thu, 14 Aug 2014 16:34:04 -0700
parents 48d0f28311a3
children 690778ffd302
line wrap: on
line source

"""
setup packaging script for kplot
"""

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]
      kplot = kplot.main: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='kplot',
      version=version,
      description="personal experiments in 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/kplot',
      license='',
      packages=['kplot'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )