Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Michiel Cottaar
fslpy
Commits
a7543878
Commit
a7543878
authored
Nov 05, 2019
by
Paul McCarthy
🚵
Browse files
Merge branch 'mnt/packages' into 'master'
Mnt/packages See merge request fsl/fslpy!177
parents
f6161904
22ccc682
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.rst
View file @
a7543878
...
...
@@ -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
^^^^^^^^^^
...
...
setup.py
View file @
a7543878
...
...
@@ -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.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment