2017-08-23 15:54:49 +08:00
|
|
|
# Patterns to exclude from any directory
|
|
|
|
global-exclude *~
|
|
|
|
global-exclude *.pyc
|
|
|
|
global-exclude *.pyo
|
|
|
|
global-exclude .git
|
|
|
|
global-exclude .ipynb_checkpoints
|
2018-12-18 16:32:01 +08:00
|
|
|
global-exclude *.h5
|
|
|
|
global-exclude *.npz
|
2017-09-14 19:49:07 +08:00
|
|
|
recursive-include package/debian? *
|
2019-03-18 22:28:37 +08:00
|
|
|
recursive-include pyFAI/ext *.cpp *.c *.h *.pyx *.pxd *.pxi
|
2016-02-04 21:08:40 +08:00
|
|
|
recursive-include pyFAI *.py
|
|
|
|
recursive-exclude pyFAI *.pyc
|
2016-06-23 20:45:41 +08:00
|
|
|
recursive-include pyFAI/resources/openCL *.cl *.h
|
2017-09-14 19:49:07 +08:00
|
|
|
recursive-include pyFAI/resources/gui *.ui *.png *.svg
|
2016-06-23 20:30:01 +08:00
|
|
|
recursive-include pyFAI/resources/calibration *.D
|
2015-02-06 04:59:37 +08:00
|
|
|
recursive-include dll *.dll
|
2017-07-20 21:19:47 +08:00
|
|
|
recursive-exclude benchmark *
|
|
|
|
recursive-exclude test *
|
2017-07-20 21:28:35 +08:00
|
|
|
recursive-exclude pyFAI.egg-info *
|
|
|
|
exclude pyFAI.egg-info
|
2018-01-19 18:07:48 +08:00
|
|
|
recursive-exclude build *
|
|
|
|
recursive-exclude dist *
|
|
|
|
include version.py
|
2012-06-08 21:25:04 +08:00
|
|
|
include stdeb.cfg
|
2012-09-28 15:39:01 +08:00
|
|
|
include setup.cfg
|
2018-01-19 18:07:48 +08:00
|
|
|
exclude MANIFEST
|
2012-07-03 20:20:46 +08:00
|
|
|
include MANIFEST.in
|
2017-09-14 18:22:09 +08:00
|
|
|
include build-deb.sh
|
2016-04-11 20:09:50 +08:00
|
|
|
include run_tests.py
|
|
|
|
include bootstrap.py
|
2016-02-04 21:20:54 +08:00
|
|
|
include README.rst
|
2012-07-03 20:20:46 +08:00
|
|
|
include CHANGELOG.txt
|
2012-11-27 03:38:17 +08:00
|
|
|
include TODO.txt
|
Version 0.12:
* Continuous integration on linux, windows using Python 2.7 and 3.4+
* Drop support of Python 2.6, 3.2, 3.3 and debian6 packaging
* New radial output units: Reciprocal spacing squared and log(q)
**ID02**
* GPU accelerate version of ai.separate (Bragg & amorphous) **ID13**
* Quantile filtering in pyFAI-average **ID02**
* New graphical application for diffraction imaging **ID21**
* Migrate to a common structure with *silx* (reorganize tests,
benchmarks, ...)
* Extensions (binary sub-modules) have all been moved to *ext* directory
* Many improvements multigeometry integrators
* Compatibility with the copy module (copy.deepcopy) for azimuthal
integrator **ID02**
* Distortion correction works also for non-contiguous detectors
* Update documentation and provide advanced tutorials:
- Introduction to pyFAI using the jupyter notebook
- detector calibration **ID15, BM02**
- Correction of detector distortion, examples of pixel detectors.
- calibrant calculation **ID30**
- error handling **ID02, BM29**
* pyFAI-integrate can now be used with or without GUI
* Many new detectors (ADSC, Pilatus CdTe, Apex II, Pixium):
- support for non-flat/curved detectors (Aarhus)
- non-contiguous detectors (WOS Xpad)
* Include tests and benchmarking tools as part of the library
* Better testing.
2016-06-06 20:03:49 +08:00
|
|
|
include copyright
|
2017-07-20 21:40:36 +08:00
|
|
|
include requirements.txt
|
2018-01-19 18:07:48 +08:00
|
|
|
include pyproject.toml
|
2017-08-23 15:54:49 +08:00
|
|
|
|
2018-12-18 16:32:01 +08:00
|
|
|
#Include doc without checkpoints or downloaded files
|
2017-08-23 15:54:49 +08:00
|
|
|
recursive-include doc *
|
|
|
|
recursive-exclude doc .ipynb_checkpoints/*.ipynb
|
2018-12-18 16:32:01 +08:00
|
|
|
recursive-exclude doc *.h5
|
|
|
|
recursive-exclude doc *.npz
|
|
|
|
recursive-exclude doc *.npy
|
|
|
|
recursive-exclude doc *.edf
|
|
|
|
recursive-exclude doc *.edf
|
2017-08-23 15:54:49 +08:00
|
|
|
|