X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=c7352fda11f74ab2480f9dfb0347f0533ec19700;hb=91564dd3ab9e5f534433cb11d66a1b6ebc95b59f;hp=9b2994960e21b73e5e8ebbc4b1ff5cc7bfaabe49;hpb=6d74800f03c5d21f6f3aea54fcd37794f6702858;p=mimedecode.git diff --git a/setup.py b/setup.py index 9b29949..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@phd.pp.ru", - url = "http://phd.pp.ru/Software/Python/#mimedecode", - license = "GPL", + author_email = "phd@phdru.name", + url = "http://phdru.name/Software/Python/#mimedecode", + license = __license__, platforms = "All", scripts = ['mimedecode.py'] )