]> git.phdru.name Git - mimedecode.git/blob - setup.py
Version 2.1.0.
[mimedecode.git] / setup.py
1 #! /usr/bin/env python
2
3
4 from distutils.core import setup
5 from mimedecode import _version, __copyright__
6
7
8 setup(name = "mimedecode",
9    version = _version,
10    description = "BroytMann mimedecode.py",
11    long_description = "BroytMann mimedecode.py, " + __copyright__,
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 )