blob: 3fcbc5283c83e5e46d67f898de6d7cc09de0aea7 [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",
niemeyer9bfcf842003-10-11 21:11:44 +00005 version = "0.3",
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 )