summaryrefslogtreecommitdiff
path: root/setup.py
blob: b4d1525c4009d96adff12143bb3a0e039bb3acca (plain)
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"],
      )