fixed tarball link in setup.py, added py 3.6

This commit is contained in:
Wenzel Jakob 2016-02-07 17:37:40 +01:00
parent 8ed2808239
commit 6f6c3bc7fc

View File

@ -12,7 +12,7 @@ setup(
author='Wenzel Jakob', author='Wenzel Jakob',
author_email='wenzel@inf.ethz.ch', author_email='wenzel@inf.ethz.ch',
url='https://github.com/wjakob/pybind11', url='https://github.com/wjakob/pybind11',
download_url='https://github.com/wjakob/pybind11/tarball/v1.0', download_url='https://github.com/wjakob/pybind11/tarball/v' + __version__,
packages=['pybind11'], packages=['pybind11'],
license='BSD', license='BSD',
headers=[ headers=[
@ -41,6 +41,7 @@ setup(
'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: BSD License', 'License :: OSI Approved :: BSD License',
], ],
keywords='C++11, Python bindings', keywords='C++11, Python bindings',