~abentley/bzrtools/bzrtools.dev

147.1.3 by Robert Collins
test and deliver basic pending-merges into bzr so that merging is recorded
1
#!/usr/bin/python
2
from distutils.core import setup
3
4
setup(name="python-dateutil",
5
      version = "0.4",
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
"""\
13
The dateutil module provides powerful extensions to the standard
14
datetime module, available in Python 2.3+.
15
""",
16
      packages = ["dateutil"],
17
      )