view setup.py @ 41:f5379e8ee6c2

give a version so i can pretend its real software
author Jeff Hammel <jhammel@mozilla.com>
date Fri, 30 Mar 2012 16:01:10 -0700
parents c44fb4b6918b
children 14556787478c
line wrap: on
line source

"""
setup packaging script for PaInt
"""

import os

version = "0.1"
dependencies = ['virtualenv >= 1.7.1.2', 'pip >= 1.1', 'pkginfo', 'CommandParser >= 0.1.1']

# allow use of setuptools/distribute or distutils
kw = {}
try:
    from setuptools import setup
    kw['entry_points'] = """
      [console_scripts]
      python-package = paint.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='PaInt',
      version=version,
      description="python PAckage INTrospection",
      long_description=description,
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/mozilla/hg/PaInt',
      license='MPL',
      packages=['paint'],
      include_package_data=True,
      zip_safe=False,
      **kw
      )