Move all of the information about options to the man page.
[rawdog/.git] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4
5 setup(name = "rawdog",
6         version = "2.15rc1",
7         description = "RSS Aggregator Without Delusions Of Grandeur",
8         author = "Adam Sampson",
9         author_email = "ats@offog.org",
10         url = "http://offog.org/code/rawdog.html",
11         license = "GNU GPL v2 or later",
12         scripts = ['rawdog'],
13         data_files = [('share/man/man1', ['rawdog.1'])],
14         packages = ['rawdoglib'])