12 lines
355 B
Python
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'],
|
|
)
|