Mercurial > hg > IntentMadeManifest
view setup.py @ 17:734d26329c82
from http://k0s.org/hg/config/file/c328382f68ff/python/actions.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Mon, 29 Jul 2013 22:14:44 -0700 |
parents | b8be785f8e87 |
children |
line wrap: on
line source
""" setup packaging script for IntentMadeManifest """ import os version = "0.0" dependencies = [] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] IntentMadeManifest = IntentMadeManifest.main:main IntentMadeManifest-template = IntentMadeManifest.template: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='IntentMadeManifest', version=version, description="python workflow engine via directed graph", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='', license='', packages=['intentmademanifest'], include_package_data=True, zip_safe=False, **kw )