Skip to content

Commit b6626a3

Browse files
committed
[MNT] Fixing package data
1 parent 98a4a3f commit b6626a3

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

MANIFEST.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
include README.rst LICENSE environment.yml requirements.txt
2-
recursive-include netneurotools data/*
3-
2+
recursive-include netneurotools/data *
43
include versioneer.py

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ all =
5959

6060
[options.package_data]
6161
netneurotools =
62-
netneurotools/data/*
62+
data/*
6363

6464
[bdist_wheel]
6565
universal=1

tools/install_package.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ else
1414
false
1515
fi
1616

17+
python -c 'import netneurotools; print(netneurotools.__version__)'
18+
1719
pip install "netneurotools[$CHECK_TYPE]"
1820

1921
echo "Done installing netneurotools"

tools/run_checks.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ elif [ "$CHECK_TYPE" == "test" ]; then
1313
mkdir for_testing
1414
cd for_testing
1515
cp ../setup.cfg .
16-
pytest --doctest-modules --cov netneurotools--cov-report xml \
16+
pytest --doctest-modules --cov netneurotools --cov-report xml \
1717
--junitxml=test-results.xml -v --pyargs netneurotools
1818
else
1919
false

0 commit comments

Comments
 (0)