Fixed doc version (again)
Added debian control files
This commit is contained in:
parent
fa21cd4b7e
commit
b9822b1d10
@ -49,9 +49,9 @@ copyright = '2011, Luke Campagnola'
|
|||||||
# built documents.
|
# built documents.
|
||||||
#
|
#
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = ''
|
version = '0.9.0'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = ''
|
release = '0.9.0'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
@ -3,8 +3,8 @@
|
|||||||
You can adapt this file completely to your liking, but it should at least
|
You can adapt this file completely to your liking, but it should at least
|
||||||
contain the root `toctree` directive.
|
contain the root `toctree` directive.
|
||||||
|
|
||||||
Welcome to the documentation for pyqtgraph 1.8
|
Welcome to the documentation for pyqtgraph
|
||||||
==============================================
|
==========================================
|
||||||
|
|
||||||
Contents:
|
Contents:
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ PyQtGraph - Scientific Graphics and GUI Library for Python
|
|||||||
www.pyqtgraph.org
|
www.pyqtgraph.org
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = None
|
__version__ = '0.9.0'
|
||||||
|
|
||||||
### import all the goodies and add some helper functions for easy CLI use
|
### import all the goodies and add some helper functions for easy CLI use
|
||||||
|
|
||||||
|
2
setup.py
2
setup.py
@ -15,7 +15,7 @@ if os.path.isdir(buildPath):
|
|||||||
distutils.dir_util.remove_tree(buildPath)
|
distutils.dir_util.remove_tree(buildPath)
|
||||||
|
|
||||||
setup(name='pyqtgraph',
|
setup(name='pyqtgraph',
|
||||||
version='',
|
version='0.9.0',
|
||||||
description='Scientific Graphics and GUI Library for Python',
|
description='Scientific Graphics and GUI Library for Python',
|
||||||
long_description="""\
|
long_description="""\
|
||||||
PyQtGraph is a pure-python graphics and GUI library built on PyQt4/PySide and numpy.
|
PyQtGraph is a pure-python graphics and GUI library built on PyQt4/PySide and numpy.
|
||||||
|
13
tools/DEBIAN/control
Normal file
13
tools/DEBIAN/control
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
Package: python-pyqtgraph
|
||||||
|
Version: 0.9.0
|
||||||
|
Section: python
|
||||||
|
Priority: optional
|
||||||
|
Architecture: all
|
||||||
|
Essential: no
|
||||||
|
Installed-Size: 5048
|
||||||
|
Maintainer: Luke Campagnola <luke.campagnola@gmail.com>
|
||||||
|
Homepage: http://luke.campagnola.me/code/pyqtgraph
|
||||||
|
Depends: python (>= 2.6), python-qt4 | python-pyside, python-scipy, python-numpy
|
||||||
|
Suggests: python-opengl, python-qt4-gl
|
||||||
|
Description: Scientific Graphics and GUI Library for Python
|
||||||
|
PyQtGraph is a pure-python graphics and GUI library built on PyQt4 and numpy. It is intended for use in mathematics / scientific / engineering applications. Despite being written entirely in python, the library is very fast due to its heavy leverage of numpy for number crunching and Qt's GraphicsView framework for fast display.
|
2
tools/DEBIAN/postrm
Executable file
2
tools/DEBIAN/postrm
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
rm -rf /usr/lib/python2.7/dist-packages/pyqtgraph
|
Loading…
Reference in New Issue
Block a user