File: setup.py

package info (click to toggle)
python-dsv 1.4.1-13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 488 kB
  • sloc: python: 583; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (8)
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 = "DSV",
      version = "1.4.1",
      description = "Delimiter-separated-values importer (aka CSV)",
      author = "Cliff Wells",
      author_email = "clifford.wells@comcast.net",
      url = "http://www.sf.net/projects/python-dsv/",
      license = "Python-style",
      packages = ["DSV"],
      )