blob: d8067e9d9e368fdfca33af7980982c869f72db7c [file] [log] [blame]
niemeyer68ae2752003-09-28 01:20:02 +00001#!/usr/bin/python
niemeyerdebf3cd2005-02-23 18:33:30 +00002from distutils.sysconfig import get_python_lib
niemeyer68ae2752003-09-28 01:20:02 +00003from distutils.core import setup
niemeyerdebf3cd2005-02-23 18:33:30 +00004import glob
5import os
6
7if os.path.isfile("MANIFEST"):
8 os.unlink("MANIFEST")
9
10PYTHONLIB = get_python_lib(1)
niemeyer68ae2752003-09-28 01:20:02 +000011
niemeyercc77d432003-10-09 02:57:39 +000012setup(name="python-dateutil",
niemeyer4da06a42004-07-16 21:21:22 +000013 version = "0.5",
niemeyer68ae2752003-09-28 01:20:02 +000014 description = "Extensions to the standard python 2.3+ datetime module",
15 author = "Gustavo Niemeyer",
16 author_email = "niemeyer@conectiva.com",
17 url = "https://moin.conectiva.com.br/DateUtil",
18 license = "PSF License",
19 long_description =
20"""\
21The dateutil module provides powerful extensions to the standard
22datetime module, available in Python 2.3+.
23""",
24 packages = ["dateutil"],
niemeyerdebf3cd2005-02-23 18:33:30 +000025 data_files = [(PYTHONLIB+"/dateutil/zoneinfo",
26 glob.glob("dateutil/zoneinfo/zoneinfo*.tar.*"))],
niemeyer68ae2752003-09-28 01:20:02 +000027 )