X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=32b1a1eeb77813acc1b33a4d499769e1e8f4235f;hb=a3b781fb58670e6418c1b2d1afe497ee5846117c;hp=f5c7e42745848d833ceebbb5dae6abe6c167443c;hpb=27550cf12d5e7e50f882e53e5e5a632e3758c667;p=mimedecode.git diff --git a/setup.py b/setup.py index f5c7e42..32b1a1e 100755 --- a/setup.py +++ b/setup.py @@ -1,17 +1,15 @@ #! /usr/bin/env python - from distutils.core import setup -from mimedecode import __version__ as version - +from mimedecode import __version__, __copyright__ setup(name = "mimedecode", - version = version + 'd', - description = "BroytMann mimedecode.py", - long_description = "BroytMann mimedecode.py, Copyright (C) 2001-2004 PhiloSoft Design", - author = "Oleg Broytmann", - author_email = "phd@phd.pp.ru", - url = "http://phd.pp.ru/Software/Python/#mimedecode", + 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", platforms = "All", scripts = ['mimedecode.py']