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

@ -1,12 +1,11 @@
To release a new version of pybind11:
- Update version macros in `include/pybind11/common.h`
- Update `pybind11/_version.py` (set release version, remove 'dev')
- Update version in `setup.py`
- `git add` and `git commit`.
- `python setup.py sdist upload`.
- `python setup.py bdist_wheel upload`.
- `git tag -a X.X -m 'Release tag comment'`.
- Update `_version.py` (add 'dev' and increment minor).
- `git add` and `git commit`. `git push`. `git push --tags`.
The remote for the last `git push --tags` should be the main repository for

View File

@ -1 +0,0 @@
from ._version import version_info, __version__

View File

@ -1,2 +0,0 @@
version_info = (1, 3, 'dev0')
__version__ = '.'.join(map(str, version_info))

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',