view setup.py @ 7:aa411d9ff772 default tip

we dont really need which; it is a pain in the ass dep anyway
author Jeff Hammel <k0scist@gmail.com>
date Mon, 13 Apr 2015 15:47:46 -0700
parents 1792871b4302
children
line wrap: on
line source

"""
setup packaging script for SupervisorAdmin
"""

import os

version = "0.1"
dependencies = []

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
      supervisor-add = supervisoradmin.add: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='SupervisorAdmin',
      version=version,
      description="add supervisor jobs",
      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/SupervisorAdmin',
      license='',
      packages=['supervisoradmin'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )