contextlib2/setup.py

19 lines
622 B
Python
Raw Normal View History

#!/usr/bin/env python
2011-12-13 12:41:17 +00:00
from distutils.core import setup
2012-05-01 10:42:19 +00:00
# Technically, unittest2 is a dependency to run the tests on 2.6 and 3.1
# This file ignores that, since I don't want to depend on distribute
# or setuptools just to get "tests_require" support
2012-05-01 10:42:19 +00:00
2011-12-13 12:41:17 +00:00
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'
)