Add example subpackages to setup.py

This commit is contained in:
Luke Campagnola 2014-12-22 18:29:09 -05:00
parent f7a54ffd42
commit 9a951318be
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ sys.path.insert(0, os.path.join(path, 'tools'))
import setupHelpers as helpers
## generate list of all sub-packages
allPackages = helpers.listAllPackages(pkgroot='pyqtgraph') + ['pyqtgraph.examples']
allPackages = (helpers.listAllPackages(pkgroot='pyqtgraph') +
['pyqtgraph.'+x for x in helpers.listAllPackages(pkgroot='examples')])
## Decide what version string to use in the build
version, forcedVersion, gitVersion, initVersion = helpers.getVersionStrings(pkg='pyqtgraph')