diff --git a/.gitignore b/.gitignore index 24b79a0e1252d3405538aa8098ddd4f4a9282744..4eea9edf56d34ed3000ca11d8d5d71530161c62d 100644 --- a/.gitignore +++ b/.gitignore @@ -65,6 +65,10 @@ ltfatpy.egg-info/ .project .pydevproject +# PyCharm # +########### +.idea + # Ipython files # ################# @@ -84,8 +88,9 @@ pytests_results.txt .coverage .html .png -htmlcov/ +.eggs LtfatPyt.egg-info/ .cache/ dist/ MANIFEST + diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..39656900fad44cadffc82390dc5b76f3a74ea25f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,44 @@ +# CI Config for ltaftpy / gitlab + +# nosetests template +.nose: &nose + script: + - pip3 install -e . + - nosetests3 + artifacts: + paths: + - build + expire_in: 8d + +# doc template +.doc: &doc + script: + - pip3 install -e . + - python3 setup.py build_sphinx + - cp -r build/sphinx/html public + artifacts: + paths: + - public + +# Tests on X86_64 ubuntu +unbutu:X86_64: + <<: *nose + image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:X86_64 + tags: + - docker + +# Tests on i686 ubuntu +ubuntu:i686: + <<: *nose + image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:i686 + tags: + - docker + +# Doc Generation +pages: + <<: *doc + image: registry.gitlab.lif.univ-mrs.fr:5005/dev/ltfatpy/ubuntu:X86_64 + tags: + - docker + only: + - master diff --git a/MANIFEST.in b/MANIFEST.in index 88d07c6f4a811c072af65b3ac8e66cd40d5cb53b..69147fa6ab3211265fb258d8b88ffa0846841a83 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -3,7 +3,7 @@ recursive-include ltfatpy/comp *.c *.pyx recursive-include doc *.rst *.py *.png *.bib prune ltfat_C_kernel/tests prune ltfat_C_kernel/lib -prune ltfatpy/tests +#prune ltfatpy/tests graft cmake-modules include *.txt include *.rst diff --git a/README.rst b/README.rst index 606f70cf5bec9ff78e105031fe18b756edb590d3..64909d83108c6e53181312cedc869b8c7b4d1a02 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,8 @@ The latest version of **ltfatpy** can be downloaded from the following `PyPI page <https://pypi.python.org/pypi/ltfatpy>`_. The documentation is available as a -`pythonhosted site <http://pythonhosted.org/ltfatpy/>`_. +`pythonhosted site <http://pythonhosted.org/ltfatpy/>`_ or directly on +the `gitlab repository pages <http://dev.pages.lif.univ-mrs.fr/ltfatpy/>`_ The development is done in this `gitlab project <https://gitlab.lif.univ-mrs.fr/dev/ltfatpy>`_, which provides diff --git a/doc/conf.py b/doc/conf.py index e9d6a755deff8f714ed95c1413b94169b7f7365c..8e95f3318807eecbb82e80168a498708b3e3264b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -44,7 +44,7 @@ extensions = [ 'sphinx.ext.intersphinx', 'sphinx.ext.todo', 'sphinx.ext.coverage', - 'sphinx.ext.pngmath', + 'sphinx.ext.imgmath', 'sphinx.ext.ifconfig', 'sphinx.ext.viewcode', 'sphinxcontrib.bibtex' diff --git a/docker/Dockerfile b/docker/Dockerfile deleted file mode 100644 index 21022770da3b0fdf6cb58f4c7b777036b7ccd75f..0000000000000000000000000000000000000000 --- a/docker/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -FROM debian:jessie -MAINTAINER Denis Arrivault -WORKDIR / -RUN apt-get update && apt-get install -y \ - cmake \ - libfftw3-dev \ - liblapack-dev \ - python \ - python-dev \ - python-pip \ - python-matplotlib \ - gfortran -RUN pip install scipy coverage Sphinx sphinxcontrib-bibtex -ADD ltfatpy-1.0.0.tar.gz / -RUN pip install ltfatpy-1.0.0/ && pip uninstall ltfatpy -RUN cd ltfatpy-1.0.0/ && python setup.py build_sphinx diff --git a/docker/Dockerfile_X86_64 b/docker/Dockerfile_X86_64 new file mode 100644 index 0000000000000000000000000000000000000000..e3676f62822cb76b15f7d27820e61be695b92cda --- /dev/null +++ b/docker/Dockerfile_X86_64 @@ -0,0 +1,21 @@ +FROM ubuntu:latest +MAINTAINER Denis Arrivault +WORKDIR / +RUN apt-get update && apt-get install -y \ + cmake \ + libfftw3-dev \ + liblapack-dev \ + python3 \ + python3-dev \ + python3-pip \ + python3-tk \ + python3-matplotlib +RUN pip3 install --upgrade pip +RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex + +# Copy the ltfatpy sdist in the docker directory and uncomment the following line +# if you want to include ltfatpy sources in the docker image : +# ADD ltfatpy-1.0.8.tar.gz / + +# cleanup +RUN apt-get -qy autoremove \ No newline at end of file diff --git a/docker/Dockerfile_cython b/docker/Dockerfile_cython deleted file mode 100644 index 99337eb84ed074fbd3bb729faa98d4c77bc04a3e..0000000000000000000000000000000000000000 --- a/docker/Dockerfile_cython +++ /dev/null @@ -1,15 +0,0 @@ -FROM debian:jessie -MAINTAINER Denis Arrivault -WORKDIR / -RUN apt-get update && apt-get install -y \ - cmake \ - libfftw3-dev \ - liblapack-dev \ - python \ - python-pip \ - cython \ - python-matplotlib \ - gfortran -RUN pip install scipy coverage -ADD ltfatpy-1.0.0.tar.gz / -RUN pip install ltfatpy-1.0.0/ \ No newline at end of file diff --git a/docker/Dockerfile_cython_X86_64 b/docker/Dockerfile_cython_X86_64 new file mode 100644 index 0000000000000000000000000000000000000000..65ff8dc4716c22792d6e8623d3c0ff9db885d956 --- /dev/null +++ b/docker/Dockerfile_cython_X86_64 @@ -0,0 +1,22 @@ +FROM ubuntu:latest +MAINTAINER Denis Arrivault +WORKDIR / +RUN apt-get update && apt-get install -y \ + cmake \ + libfftw3-dev \ + liblapack-dev \ + python3 \ + python3-dev \ + python3-pip \ + cython \ + python3-tk \ + python3-matplotlib +RUN pip3 install --upgrade pip +RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex + +# Copy the ltfatpy sdist in the docker directory and uncomment the following line +# if you want to include ltfatpy sources in the docker image : +# ADD ltfatpy-1.0.8.tar.gz / + +# cleanup +RUN apt-get -qy autoremove \ No newline at end of file diff --git a/docker/Dockerfile_i686 b/docker/Dockerfile_i686 new file mode 100644 index 0000000000000000000000000000000000000000..4aabd0fe64f5a1b9e70ac6d3b7be030ae8ec06a3 --- /dev/null +++ b/docker/Dockerfile_i686 @@ -0,0 +1,21 @@ +FROM ioft/i386-ubuntu +MAINTAINER Denis Arrivault +WORKDIR / +RUN apt-get update && apt-get install -y \ + cmake \ + libfftw3-dev \ + liblapack-dev \ + python3 \ + python3-dev \ + python3-pip \ + python3-tk \ + python3-matplotlib +RUN pip3 install --upgrade pip +RUN pip3 install scipy nose coverage pytest pytest-cov Sphinx sphinxcontrib-bibtex + +# Copy the ltfatpy sdist in the docker directory and uncomment the following line +# if you want to include ltfatpy sources in the docker image : +# ADD ltfatpy-1.0.8.tar.gz / + +# cleanup +RUN apt-get -qy autoremove \ No newline at end of file diff --git a/setup.cfg b/setup.cfg index 9af616e761f779da81a670a17e14a86457b08e27..f7fb1ae830b49eee63d44751070caf53dca79d84 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,13 @@ [nosetests] #verbosity=1 where=./ltfatpy +with-xunit=1 +xunit-file=./build/nosetests.xml with-coverage=1 cover-package=ltfatpy cover-erase=1 cover-html=1 -cover-html-dir=../htmlcov +cover-html-dir=../build/htmlcov [pytest] # Specifies a minimal pytest version required for running tests. @@ -19,4 +21,5 @@ norecursedirs = .git bin build cmake-modules ltfat_C_kernel sandboxes .settings source=./ltfatpy omit = ./ltfatpy/tests/* [coverage html] -directory=../htmlcov \ No newline at end of file +directory=../build/htmlcov + diff --git a/setup.py b/setup.py index cf02de46d1f4ad6c2dae3217eb7dc1ec3c816802..48839a897962e9108ab4e53d9c8a54c3de770728 100755 --- a/setup.py +++ b/setup.py @@ -129,7 +129,7 @@ def run_cmake(root_dir): except ds.DistutilsExecError: print("Error while running cmake") print("run 'setup.py build --help' for build options") - print("You may also try editing the settings in CMakeLists.txt file " + + print("You may also try editing the settings in CMakeLists.txt file " + "and re-running setup") sys.exit(-1) @@ -147,7 +147,7 @@ def run_make(root_dir): except ds.DistutilsExecError: print("Error while running make") print("run 'setup.py build --help' for build options") - print("You may also try editing the settings in CMakeLists.txt file " + + print("You may also try editing the settings in CMakeLists.txt file " + "and re-running setup") sys.exit(-1) @@ -166,7 +166,7 @@ def run_make_install(root_dir): except ds.DistutilsExecError: print("Error while running make install") print("run 'setup.py build --help' for build options") - print("You may also try editing the settings in CMakeLists.txt file " + + print("You may also try editing the settings in CMakeLists.txt file " + "and re-running setup") sys.exit(-1) @@ -184,7 +184,7 @@ def run_uninstall(root_dir): except ds.DistutilsExecError: print("Error while running make uninstall") print("run 'setup.py build --help' for build options") - print("You may also try editing the settings in CMakeLists.txt file " + + print("You may also try editing the settings in CMakeLists.txt file " + "and re-running setup") sys.exit(-1) @@ -313,8 +313,8 @@ def setup_package(): setup(name="ltfatpy", version=VERSION, description='The Large Time-Frequency Toolbox (LTFAT) in Python', - long_description=(read('README.rst') + '\n\n' + - read('HISTORY.rst') + '\n\n' + + long_description=(read('README.rst') + '\n\n' + + read('HISTORY.rst') + '\n\n' + read('AUTHORS.rst')), packages=find_packages(), package_data={'ltfatpy.signals': ['*.wav'], @@ -323,11 +323,11 @@ def setup_package(): url="https://gitlab.lif.univ-mrs.fr/dev/ltfatpy", license='GNU GPL V3', author='Denis Arrivault and Florent Jaillet', - author_email='denis.arrivault@lif.univ-mrs.fr ' + + author_email='denis.arrivault@lif.univ-mrs.fr ' + 'florent.jaillet@lif.univ-mrs.fr', - # install_requires=['numpy'], ext_modules=extensions, - tests_require=['pytest'], + test_suite='nose.collector', + tests_require=['nose', 'coverage'], cmdclass={'build_ext': m_build_ext, 'clean': m_clean, 'sdist': m_sdist}, classifiers=['Development Status :: 5 - Production/Stable', @@ -344,7 +344,7 @@ def setup_package(): 'Topic :: Scientific/Engineering :: Mathematics', 'Topic :: Scientific/Engineering' ], - install_requires=['numpy>=1.8', 'matplotlib>=1.4', 'six>=1.10'], + install_requires=['scipy>=0.18', 'numpy>=1.8', 'matplotlib>=1.4', 'six>=1.10'], )