1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
from setuptools import setup
setup(
name = 'planetfilter',
version = '0.12.0',
description = 'Filter for blog aggregators',
author = 'Francois Marier',
author_email = 'francois@fmarier.org',
url = 'https://launchpad.net/planetfilter',
scripts = ['planetfilter'],
keywords = ['rss', 'atom', 'blogs', 'planet'],
license = 'AGPL-3.0+',
requires = ['defusedxml'],
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
],
long_description_content_type = 'text/x-rst',
long_description = """\
PlanetFilter uses a user-provided filter to prune blog aggregator
feeds. It allows anyone to subscribe to popular blog aggregators
without being overwhelmed by the noise.
.. _project page: https://launchpad.net/planetfilter
"""
)
|