]> git.phdru.name Git - mimedecode.git/blob - setup.py
phd.pp.ru => phdru.name.
[mimedecode.git] / setup.py
1 #! /usr/bin/env python
2
3 from distutils.core import setup
4 from mimedecode import _version, __copyright__
5
6 setup(name = "mimedecode",
7    version = _version,
8    description = "Broytman mimedecode.py",
9    long_description = "Broytman mimedecode.py, " + __copyright__,
10    author = "Oleg Broytman",
11    author_email = "phd@phdru.name",
12    url = "http://phdru.name/Software/Python/#mimedecode",
13    license = "GPL",
14    platforms = "All",
15    scripts = ['mimedecode.py']
16 )