X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=32b1a1eeb77813acc1b33a4d499769e1e8f4235f;hb=6177459a3541bbba6610520f10abee8c4f574d55;hp=9b2994960e21b73e5e8ebbc4b1ff5cc7bfaabe49;hpb=6d74800f03c5d21f6f3aea54fcd37794f6702858;p=mimedecode.git diff --git a/setup.py b/setup.py index 9b29949..32b1a1e 100755 --- a/setup.py +++ b/setup.py @@ -1,15 +1,15 @@ #! /usr/bin/env python from distutils.core import setup -from mimedecode import _version, __copyright__ +from mimedecode import __version__, __copyright__ 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", + author_email = "phd@phdru.name", + url = "http://phdru.name/Software/Python/#mimedecode", license = "GPL", platforms = "All", scripts = ['mimedecode.py']