contextlib2/setup.py

15 lines
427 B
Python
Raw Normal View History

#!/usr/bin/env python
2011-12-13 12:41:17 +00:00
from distutils.core import setup
setup(
name='contextlib2',
version=open('VERSION.txt').read().strip(),
2011-12-13 12:41:17 +00:00
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'
)