contextlib2/setup.py

32 lines
1.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
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(),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
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.rst').read(),
2011-12-13 12:41:17 +00:00
author='Nick Coghlan',
author_email='ncoghlan@gmail.com',
2016-01-12 11:08:23 +00:00
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.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
2016-01-12 11:08:23 +00:00
],
2016-05-02 06:54:31 +00:00
)