Skip to content
Snippets Groups Projects
Commit a7543878 authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

Merge branch 'mnt/packages' into 'master'

Mnt/packages

See merge request fsl/fslpy!177
parents f6161904 22ccc682
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,14 @@ Changed
* Internal reorganisation in the :mod:`.idle` module.
Fixed
^^^^^
* Fixed incorrect usage of ``setuptools.find_packages``, which was causing
unit tests to be installed.
Deprecated
^^^^^^^^^^
......
......@@ -27,8 +27,7 @@ with open(op.join(basedir, 'requirements.txt'), 'rt') as f:
with open(op.join(basedir, 'requirements-extra.txt'), 'rt') as f:
extra_requires = {'extras' : [l.strip() for l in f.readlines()]}
packages = find_packages(
exclude=('doc', 'tests', 'dist', 'build', 'fslpy.egg-info'))
packages = find_packages(include=('fsl', 'fsl.*'))
# Figure out the current fslpy version, as defined in fsl/version.py. We
# don't want to import the fsl package, as this may cause build problems.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment