~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to fai/python-dateutil-0.4/setup.py

  • Committer: Aaron Bentley
  • Date: 2005-06-07 18:52:04 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050607185204-5fc1f0e3d393b909
Added NEWS, obsoleted bzr-pull

Show diffs side-by-side

added added

removed removed

Lines of Context:
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
 
      )