Files
deb-python-wrapt/setup.py
2013-08-05 20:58:35 +08:00

12 lines
355 B
Python

from distutils.core import setup
setup(name = 'wrapt',
version = '0.9',
description = 'Module for decorators, wrappers and monkey patching.',
author = 'Graham Dumpleton',
author_email = 'Graham.Dumpleton@gmail.com',
license = 'BSD',
url = 'https://github.com/GrahamDumpleton/wrapt',
packages = ['wrapt'],
)