File: setup.py

package info (click to toggle)
planetfilter 0.12.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: python: 477; sh: 64; makefile: 3
file content (30 lines) | stat: -rw-r--r-- 1,021 bytes parent folder | download
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
"""
    )