Mercurial > hg > hls
diff setup.py @ 0:a9af2eba16b7
initial stub
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 20 Jul 2015 12:03:06 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon Jul 20 12:03:06 2015 -0700 @@ -0,0 +1,43 @@ +""" +setup packaging script for hls +""" + +import os + +version = "0.0" +dependencies = ['m3u8'] + +# allow use of setuptools/distribute or distutils +kw = {} +try: + from setuptools import setup + kw['entry_points'] = """ + [console_scripts] + hls = hls.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='hls', + version=version, + description="HLS client testing library for python", + 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=['hls'], + include_package_data=True, + zip_safe=False, + **kw + )