blob: 61c4eab0fb6a01a22f0718f8cd078ab16834395f [file] [log] [blame]
niemeyer68ae2752003-09-28 01:20:02 +00001#!/usr/bin/python
2from distutils.core import setup
3
4setup(name="dateutil",
5 version = "0.1",
6 description = "Extensions to the standard python 2.3+ datetime module",
7 author = "Gustavo Niemeyer",
8 author_email = "niemeyer@conectiva.com",
9 url = "https://moin.conectiva.com.br/DateUtil",
10 license = "PSF License",
11 long_description =
12"""\
13The dateutil module provides powerful extensions to the standard
14datetime module, available in Python 2.3+.
15""",
16 packages = ["dateutil"],
17 )