Mercurial > hg > PaInt
diff setup.py @ 0:96362e527bd6
initial package
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 21 Feb 2012 20:30:10 -0800 |
parents | |
children | aad329df2548 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Feb 21 20:30:10 2012 -0800 @@ -0,0 +1,41 @@ +""" +setup packaging script for PaInt +""" + +import os + +version = "0.0" +dependencies = [] + +# 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 + +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='', + packages=['paint'], + include_package_data=True, + zip_safe=False, + **kw + )