Mercurial > hg > validate-yaml
view setup.py @ 1:99c252285817 default tip
CamelCase
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 01 Nov 2016 16:09:09 -0700 |
parents | c00f27542710 |
children |
line wrap: on
line source
""" setup packaging script for validate-yaml """ import os version = "0.0" dependencies = ['PyYAML'] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] validate-yaml = validateyaml.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='validate-yaml', version=version, description="validate yaml", 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=['validateyaml'], include_package_data=True, zip_safe=False, **kw )