removed 'pybind11' package which ultimately served no purpose

This commit is contained in:
Wenzel Jakob
2016-02-22 17:29:30 +01:00
parent c0ce590f5a
commit bee8f16dbb
4 changed files with 4 additions and 7 deletions

View File

@@ -3,7 +3,8 @@
# Setup script for PyPI; use CMakeFile.txt to build the example application
from setuptools import setup
from pybind11 import __version__
__version__ = '1.3'
setup(
name='pybind11',
@@ -13,7 +14,7 @@ setup(
author_email='wenzel@inf.ethz.ch',
url='https://github.com/wjakob/pybind11',
download_url='https://github.com/wjakob/pybind11/tarball/v' + __version__,
packages=['pybind11'],
packages=[],
license='BSD',
headers=[
'include/pybind11/attr.h',