Skip to content

Commit

Permalink
Exlude tests from discovery / installation
Browse files Browse the repository at this point in the history
Without it tests/ will be installed as a top level Python module.
  • Loading branch information
penguinpee committed Jul 26, 2023
1 parent cf08b0f commit e5aa9e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
keywords=["neuron", "network", "developing", "framework", "biological", "simulation"],
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=["saveLoadV1"]),
packages=find_packages(exclude=["saveLoadV1", "tests*"]),
# List run-time dependencies here. These will be installed by pip when
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
Expand Down

0 comments on commit e5aa9e8

Please sign in to comment.