Mercurial > hg > htest
view setup.py @ 0:26f27678ae32
initial commit
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Fri, 09 Sep 2016 16:15:58 -0700 |
parents | |
children |
line wrap: on
line source
""" setup packaging script for htest """ import os version = "0.0" dependencies = ['requests'] # allow use of setuptools/distribute or distutils kw = {} try: from setuptools import setup kw['entry_points'] = """ [console_scripts] httptest = htest.httptest """ 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='htest', version=version, description="HTTP testing", 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=['htest'], include_package_data=True, zip_safe=False, **kw )