blob: bedc6854e351993c0ca7dcbb335bc3bda4ca94ab [file] [log] [blame]
niemeyer68ae2752003-09-28 01:20:02 +00001#!/usr/bin/python
2from distutils.core import setup
3
niemeyercc77d432003-10-09 02:57:39 +00004setup(name="python-dateutil",
niemeyer91a8c3d2004-03-12 06:27:50 +00005 version = "0.4",
niemeyer68ae2752003-09-28 01:20:02 +00006 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 )