2014-01-12 15:35:31 +00:00
|
|
|
DESCRIPTION = """\
|
|
|
|
PyQtGraph is a pure-python graphics and GUI library built on PyQt4/PySide and
|
|
|
|
numpy.
|
2012-09-13 14:12:59 +00:00
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
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, Qt's GraphicsView framework for
|
|
|
|
2D display, and OpenGL for 3D display.
|
|
|
|
"""
|
2012-09-10 22:00:59 +00:00
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
setupOpts = dict(
|
|
|
|
name='pyqtgraph',
|
|
|
|
description='Scientific Graphics and GUI Library for Python',
|
|
|
|
long_description=DESCRIPTION,
|
|
|
|
license='MIT',
|
|
|
|
url='http://www.pyqtgraph.org',
|
|
|
|
author='Luke Campagnola',
|
|
|
|
author_email='luke.campagnola@gmail.com',
|
|
|
|
classifiers = [
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 2",
|
|
|
|
"Programming Language :: Python :: 2.6",
|
|
|
|
"Programming Language :: Python :: 2.7",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"Development Status :: 4 - Beta",
|
|
|
|
"Environment :: Other Environment",
|
|
|
|
"Intended Audience :: Science/Research",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
"Topic :: Scientific/Engineering :: Visualization",
|
|
|
|
"Topic :: Software Development :: User Interfaces",
|
|
|
|
],
|
|
|
|
)
|
2012-12-27 04:35:23 +00:00
|
|
|
|
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
import distutils.dir_util
|
|
|
|
import os, sys, re
|
2014-01-23 18:28:30 +00:00
|
|
|
try:
|
|
|
|
# just avoids warning about install_requires
|
|
|
|
import setuptools
|
|
|
|
except ImportError:
|
|
|
|
pass
|
2013-12-01 15:23:45 +00:00
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
path = os.path.split(__file__)[0]
|
|
|
|
sys.path.insert(0, os.path.join(path, 'tools'))
|
|
|
|
import setupHelpers as helpers
|
2013-12-01 15:23:45 +00:00
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
## generate list of all sub-packages
|
|
|
|
allPackages = helpers.listAllPackages(pkgroot='pyqtgraph') + ['pyqtgraph.examples']
|
|
|
|
|
|
|
|
## Decide what version string to use in the build
|
|
|
|
version, forcedVersion, gitVersion, initVersion = helpers.getVersionStrings(pkg='pyqtgraph')
|
2013-12-01 15:23:45 +00:00
|
|
|
|
|
|
|
|
2013-12-15 18:01:37 +00:00
|
|
|
import distutils.command.build
|
|
|
|
|
|
|
|
class Build(distutils.command.build.build):
|
2014-01-12 15:35:31 +00:00
|
|
|
"""
|
|
|
|
* Clear build path before building
|
|
|
|
* Set version string in __init__ after building
|
|
|
|
"""
|
2013-12-15 18:01:37 +00:00
|
|
|
def run(self):
|
2014-01-12 15:35:31 +00:00
|
|
|
global path, version, initVersion, forcedVersion
|
|
|
|
global buildVersion
|
2014-01-12 16:50:52 +00:00
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
## Make sure build directory is clean
|
|
|
|
buildPath = os.path.join(path, self.build_lib)
|
|
|
|
if os.path.isdir(buildPath):
|
|
|
|
distutils.dir_util.remove_tree(buildPath)
|
|
|
|
|
2013-12-15 18:01:37 +00:00
|
|
|
ret = distutils.command.build.build.run(self)
|
|
|
|
|
|
|
|
# If the version in __init__ is different from the automatically-generated
|
|
|
|
# version string, then we will update __init__ in the build directory
|
|
|
|
if initVersion == version:
|
|
|
|
return ret
|
|
|
|
|
2014-01-12 15:35:31 +00:00
|
|
|
try:
|
|
|
|
initfile = os.path.join(buildPath, 'pyqtgraph', '__init__.py')
|
2013-12-15 18:17:26 +00:00
|
|
|
data = open(initfile, 'r').read()
|
|
|
|
open(initfile, 'w').write(re.sub(r"__version__ = .*", "__version__ = '%s'" % version, data))
|
2014-01-12 15:35:31 +00:00
|
|
|
buildVersion = version
|
|
|
|
except:
|
|
|
|
if forcedVersion:
|
|
|
|
raise
|
|
|
|
buildVersion = initVersion
|
|
|
|
sys.stderr.write("Warning: Error occurred while setting version string in build path. "
|
|
|
|
"Installation will use the original version string "
|
|
|
|
"%s instead.\n" % (initVersion)
|
|
|
|
)
|
|
|
|
sys.excepthook(*sys.exc_info())
|
2013-12-15 18:01:37 +00:00
|
|
|
return ret
|
|
|
|
|
2014-03-30 06:51:32 +00:00
|
|
|
import distutils.command.install
|
2013-12-15 18:01:37 +00:00
|
|
|
|
2014-03-30 06:51:32 +00:00
|
|
|
class Install(distutils.command.install.install):
|
|
|
|
"""
|
|
|
|
* Check for previously-installed version before installing
|
|
|
|
"""
|
|
|
|
def run(self):
|
|
|
|
name = self.config_vars['dist_name']
|
|
|
|
if name in os.listdir(self.install_libbase):
|
|
|
|
raise Exception("It appears another version of %s is already "
|
|
|
|
"installed at %s; remove this before installing."
|
|
|
|
% (name, self.install_libbase))
|
|
|
|
print("Installing to %s" % self.install_libbase)
|
|
|
|
return distutils.command.install.install.run(self)
|
2014-01-12 15:35:31 +00:00
|
|
|
|
|
|
|
setup(
|
|
|
|
version=version,
|
2014-03-30 06:51:32 +00:00
|
|
|
cmdclass={'build': Build,
|
|
|
|
'install': Install,
|
|
|
|
'deb': helpers.DebCommand,
|
|
|
|
'test': helpers.TestCommand,
|
|
|
|
'debug': helpers.DebugCommand,
|
2014-04-03 20:56:17 +00:00
|
|
|
'mergetest': helpers.MergeTestCommand,
|
2014-03-30 06:51:32 +00:00
|
|
|
'style': helpers.StyleCommand},
|
2014-01-12 15:35:31 +00:00
|
|
|
packages=allPackages,
|
2012-12-26 22:51:52 +00:00
|
|
|
package_dir={'pyqtgraph.examples': 'examples'}, ## install examples along with the rest of the source
|
|
|
|
#package_data={'pyqtgraph': ['graphicsItems/PlotItem/*.png']},
|
2012-12-27 15:31:08 +00:00
|
|
|
install_requires = [
|
2012-12-26 22:51:52 +00:00
|
|
|
'numpy',
|
|
|
|
],
|
2014-01-12 15:35:31 +00:00
|
|
|
**setupOpts
|
2012-09-10 22:00:59 +00:00
|
|
|
)
|
|
|
|
|