File: setup.py

package info (click to toggle)
rawdog 2.12.dfsg.1-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 432 kB
  • ctags: 573
  • sloc: python: 4,743; makefile: 33
file content (14 lines) | stat: -rwxr-xr-x 399 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python

from distutils.core import setup

setup(name = "rawdog",
	version = "2.12",
	description = "RSS Aggregator Without Delusions Of Grandeur",
	author = "Adam Sampson",
	author_email = "ats@offog.org",
	url = "http://offog.org/code/rawdog.html",
	license = "GNU GPL v2 or later",
	scripts = ['rawdog'],
	data_files = [('share/man/man1', ['rawdog.1'])],
	packages = ['rawdoglib'])