Skip to content

Commit

Permalink
include files for pip, new version
Browse files Browse the repository at this point in the history
  • Loading branch information
toinsson committed Jun 1, 2017
1 parent e46a6bc commit cb10743
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
include LICENSE.txt
include LICENSE.txt
recursive-include pyrealsense *.pyx *.h
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.5'
version = u'2.0'
# The full version, including alpha/beta/rc tags.
release = u'1.5'
release = u'2.0.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyrealsense/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

from .core import start, stop, Service, Device

__version__ = '1.5'
__version__ = '2.0'

9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@


setup(name='pyrealsense',
version='1.5',
version='2.0',

description='Simple ctypes extension to the librealsense library for Linux and Mac OS',
description='Cross-platform ctypes/Cython wrapper to the librealsense library.',
long_description=long_description,
author='Antoine Loriette',
author_email='[email protected]',
Expand All @@ -54,12 +54,13 @@
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSem :: Hardware',
# 'License :: OSem :: Hardware',
],
keywords='realsense',

packages=find_packages(),
ext_modules=module,
setup_requires=['numpy', 'cython'],
install_requires=['numpy', 'cython', 'pycparser'],)
install_requires=['numpy', 'cython', 'pycparser'],
)

0 comments on commit cb10743

Please sign in to comment.