aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: bcf80291323a69b377469c430a983d44c24b54a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/python
from distutils.core import setup

setup(name="python-dateutil",
      version = "0.5",
      description = "Extensions to the standard python 2.3+ datetime module",
      author = "Gustavo Niemeyer",
      author_email = "niemeyer@conectiva.com",
      url = "https://moin.conectiva.com.br/DateUtil",
      license = "PSF License",
      long_description =
"""\
The dateutil module provides powerful extensions to the standard
datetime module, available in Python 2.3+.
""",
      packages = ["dateutil"],
      )