created py-tomopy package and fixed its dependencies (#4576)

* added py-tomopy package

* fixed dependencies and added import_modules

* edited deps for tomopy with import_modules and added py-olefile pkg

* changed module name

* changed dependency to python because it will not build with setuptools

* fixed dependency list for py-tomopy and py-dxchange

* added py-nose dependency

* fixed tests

* commented out dependency py-counter

* fixed dependency py-pybtex-docutils

* removed nose as a dependency

* fixed flake8 errors

* fixed import_modules

* fixed import_modules indent

* fixed various issues in tomopy and deps files
This commit is contained in:
Stas Sergienko
2017-06-22 12:51:51 -05:00
committed by Adam J. Stewart
parent 3c8e65f3d8
commit 6aa3d51939
14 changed files with 140 additions and 15 deletions

View File

@@ -33,15 +33,19 @@ class PyDxchange(PythonPackage):
homepage = "https://github.com/data-exchange/dxchange"
url = "https://github.com/data-exchange/dxchange/archive/v0.1.2.tar.gz"
import_modules = ['dxchange']
version('0.1.2', '36633bb67a1e7d1fb60c2300adbcbab3')
depends_on('py-setuptools', type='build')
depends_on('py-numpy', type='run')
depends_on('py-scipy', type='run')
depends_on('py-h5py', type='run')
depends_on('py-six', type='run')
depends_on('py-netcdf4', type='run')
depends_on('py-spefile', type='run')
depends_on('py-edffile', type='run')
depends_on('py-tifffile', type='run')
depends_on('py-dxfile', type='run')
depends_on('py-numpy', type=('build', 'run'))
depends_on('py-scipy', type=('build', 'run'))
depends_on('py-h5py', type=('build', 'run'))
depends_on('py-six', type=('build', 'run'))
depends_on('py-netcdf4', type=('build', 'run'))
depends_on('py-spefile', type=('build', 'run'))
depends_on('py-edffile', type=('build', 'run'))
depends_on('py-tifffile', type=('build', 'run'))
depends_on('py-dxfile', type=('build', 'run'))
depends_on('py-olefile', type=('build', 'run'))
depends_on('py-astropy', type=('build', 'run'))