]> git.phdru.name Git - mimedecode.git/blobdiff - setup.py
Allow installation without m_lib
[mimedecode.git] / setup.py
index f5c7e42745848d833ceebbb5dae6abe6c167443c..c7352fda11f74ab2480f9dfb0347f0533ec19700 100755 (executable)
--- 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']
 )