]> git.phdru.name Git - mimedecode.git/blob - setup.py
mimedecode.py version 2.0.0d.
[mimedecode.git] / setup.py
1 #! /usr/bin/env python
2
3
4 from distutils.core import setup
5 from mimedecode import __version__ as version
6
7
8 setup(name = "mimedecode",
9    version = version + 'd',
10    description = "BroytMann mimedecode.py",
11    long_description = "BroytMann mimedecode.py, Copyright (C) 2001-2004 PhiloSoft Design",
12    author = "Oleg Broytmann",
13    author_email = "phd@phd.pp.ru",
14    url = "http://phd.pp.ru/Software/Python/#mimedecode",
15    license = "GPL",
16    platforms = "All",
17    scripts = ['mimedecode.py']
18 )