setup.py - zs - Zeitungsschau rss to email converter
 (HTM) git clone git://r-36.net/zs
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       setup.py (988B)
       ---
            1 #!/usr/bin/env python
            2 # coding=utf-8
            3 #
            4 # Copy me if you can.
            5 # by 20h
            6 #
            7 
            8 try:
            9         from setuptools import setup
           10 except ImportError:
           11         from distutils.core import setup
           12 
           13 setup(
           14         name='zeitungsschau',
           15         version='0.5.5',
           16 
           17         packages=['zeitungsschau'],
           18         scripts=['zs'],
           19 
           20         provides=['zeitungsschau'],
           21         requires=[
           22                 'lxml (>=0.1)',
           23                 'dateutil (>=0.1)',
           24                 'html2text (>=0.1)'
           25         ],
           26         platforms=['all'],
           27 
           28         author='Christoph Lohmann',
           29         author_email='20h@r-36.net',
           30         maintainer='Christoph Lohmann',
           31         maintainer_email='20h@r-36.net',
           32         url='http://git.r-36.net/zs',
           33         description='Zeitungsschau is an rss2email converter',
           34         long_description=open("README.md").read(),
           35         license='GPLv3',
           36         classifiers=[
           37                 'Environment :: Console',
           38                 'Intended Audience :: End Users/Desktop',
           39                 'Operating System :: OS Independent',
           40                 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
           41                 'Programming Language :: Python',
           42                 'Topic :: Communications :: Email',
           43                 'Development Status :: 5 - Production/Stable'
           44         ],
           45 )
           46