File: setup.py

package info (click to toggle)
python-pyrss2gen 1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 92 kB
  • sloc: python: 478; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 372 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
# short and simple

from distutils.core import setup

setup(name = "PyRSS2Gen",
      version = "1.1",
      description = "Generate RSS2 using a Python data structure",
      author = "Andrew Dalke",
      author_email = "dalke@dalkescientific.com",
      url = "http://dalkescientific.com/Python/PyRSS2Gen.html",
      license = "BSD",
      py_modules = ["PyRSS2Gen"])