"""Decode MIME message"""
-__version__ = "2.1.4"
-__author__ = "Oleg Broytman <phd@phdru.name>"
-__copyright__ = "Copyright (C) 2001-2013 PhiloSoft Design"
-__license__ = "GNU GPL"
+from __version__ import __version__, __author__, __copyright__, __license__
import sys, os
#! /usr/bin/env python
from distutils.core import setup
-from mimedecode import __version__, __copyright__
+from __version__ import __version__, __copyright__, __license__
setup(name = "mimedecode",
version = __version__,
author = "Oleg Broytman",
author_email = "phd@phdru.name",
url = "http://phdru.name/Software/Python/#mimedecode",
- license = "GPL",
+ license = __license__,
platforms = "All",
scripts = ['mimedecode.py']
)