mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-17 06:00:23 +00:00
17 lines
550 B
Python
Executable file
17 lines
550 B
Python
Executable file
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
|
|
# Technically, unittest2 is a dependency to run the tests on 2.6 and 3.1
|
|
# Not sure how best to express that cleanly here
|
|
|
|
setup(
|
|
name='contextlib2',
|
|
version=open('VERSION.txt').read().strip(),
|
|
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'
|
|
)
|