X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=c7352fda11f74ab2480f9dfb0347f0533ec19700;hb=030fb072510968b7a2230f310ea08993561f828b;hp=89b49a9f13602ef0a45a53106a33095f4439cd15;hpb=b9eab0ff4d79b98a16902b7a3b70876ead4066d1;p=mimedecode.git diff --git a/setup.py b/setup.py index 89b49a9..c7352fd 100755 --- a/setup.py +++ b/setup.py @@ -1,16 +1,16 @@ #! /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, - description = "Broytman mimedecode.py", - long_description = "Broytman mimedecode.py, " + __copyright__, + version = __version__, + description = "A program to decode MIME messages", + long_description = "A program to decode MIME messages. " + __copyright__, author = "Oleg Broytman", author_email = "phd@phdru.name", url = "http://phdru.name/Software/Python/#mimedecode", - license = "GPL", + license = __license__, platforms = "All", scripts = ['mimedecode.py'] )