X-Git-Url: https://git.phdru.name/?a=blobdiff_plain;f=setup.py;h=c7352fda11f74ab2480f9dfb0347f0533ec19700;hb=030fb072510968b7a2230f310ea08993561f828b;hp=f5c7e42745848d833ceebbb5dae6abe6c167443c;hpb=27550cf12d5e7e50f882e53e5e5a632e3758c667;p=mimedecode.git diff --git a/setup.py b/setup.py index f5c7e42..c7352fd 100755 --- a/setup.py +++ b/setup.py @@ -1,18 +1,16 @@ #! /usr/bin/env python - from distutils.core import setup -from mimedecode import __version__ as version - +from __version__ import __version__, __copyright__, __license__ 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", - license = "GPL", + 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 = __license__, platforms = "All", scripts = ['mimedecode.py'] )