Mercurial > hg > pypedream
view setup.py @ 0:6873638f82ce default tip
initial commit
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 06 Feb 2017 03:40:08 +0000 |
parents | |
children |
line wrap: on
line source
""" setup packaging script for pypedream """ import os version = "0.3" dependencies = ['PyYAML', 'Jinja2'] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] py2rpm = pypedream.py2rpm:main py2centos = pypedream.py2centos: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='pypedream', version=version, description="python packaging work", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='k0scist@gmail.com', url='', license='', packages=['pypedream'], include_package_data=True, zip_safe=False, **kw )