view setup.py @ 1:a1b13d024582 default tip

remove non-existent entrypoints
author Jeff Hammel <k0scist@gmail.com>
date Wed, 30 Nov 2016 12:44:47 -0800
parents d28351df9a8a
children
line wrap: on
line source

"""
setup packaging script for periprocess
"""

import os

version = "0.0"
dependencies = []

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
"""
    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='periprocess',
      version=version,
      description="subprocess front-end that keeps buffers of stdout/stderr",
      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/periprocess',
      license='MPL',
      packages=['periprocess'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )