2011-12-15 11:13:03 +00:00
|
|
|
#!/usr/bin/env python
|
2016-05-02 06:54:31 +00:00
|
|
|
from setuptools import setup
|
2012-05-01 10:42:19 +00:00
|
|
|
|
2011-12-13 12:41:17 +00:00
|
|
|
setup(
|
|
|
|
|
name='contextlib2',
|
2011-12-16 13:37:53 +00:00
|
|
|
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',
|
2016-01-13 12:43:32 +00:00
|
|
|
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',
|
2016-05-02 06:54:31 +00:00
|
|
|
'Programming Language :: Python :: 2.6',
|
2016-01-12 11:08:23 +00:00
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
|
'Programming Language :: Python :: 3',
|
2016-05-02 06:54:31 +00:00
|
|
|
'Programming Language :: Python :: 3.3',
|
2016-01-12 11:08:23 +00:00
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
|
],
|
|
|
|
|
|
2016-05-02 06:54:31 +00:00
|
|
|
)
|