mirror of
https://github.com/jazzband/contextlib2.git
synced 2026-03-16 21:50:24 +00:00
27 lines
987 B
Python
Executable file
27 lines
987 B
Python
Executable file
#!/usr/bin/env python
|
|
from setuptools import setup
|
|
|
|
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.rst').read(),
|
|
author='Nick Coghlan',
|
|
author_email='ncoghlan@gmail.com',
|
|
url='http://contextlib2.readthedocs.org',
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'License :: OSI Approved :: Python Software Foundation License',
|
|
# These are the Python versions tested, it may work on others
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.6',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Programming Language :: Python :: 3.4',
|
|
'Programming Language :: Python :: 3.5',
|
|
],
|
|
|
|
)
|