root/subprojects/JPyper/setup.py

Revision 440 (by djfroofy, 07/19/07 16:31:45)

- bump

#!/usr/bin/env python

# Try to use setuptools from http://peak.telecommunity.com/DevCenter/setuptools
try:
    from setuptools import setup
except:
    from distutils.core import setup

setup(
    author='Drew Smathers',
    author_email='drew.smathers@gmail.com',
    name='jpyper',
    version='0.0.2',
    description='',
    packages=['jpyper', 'jpyper.magic'],
    package_dir={'jpyper': 'jpyper'},
    )
Note: See TracBrowser for help on using the browser.