mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
14 lines
398 B
Python
Executable file
14 lines
398 B
Python
Executable file
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='contextlib2',
|
|
version='0.2',
|
|
py_modules=['contextlib2'],
|
|
license='PSF License',
|
|
description='Backports and enhancements for the contextlib module',
|
|
long_description=open('README.txt').read(),
|
|
author='Nick Coghlan',
|
|
author_email='ncoghlan@gmail.com',
|
|
url='http://contextlib2.readthedocs.org'
|
|
)
|