Skip to content

Commit

Permalink
Exclude tests folder from installation
Browse files Browse the repository at this point in the history
  • Loading branch information
joeranbosma committed May 19, 2022
1 parent 5a6090e commit 9cf6a47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
},
license='Apache License, Version 2.0',
package_dir={"": "src"}, # our packages live under src, but src is not a package itself
packages=setuptools.find_packages('src', exclude=['tests'])
packages=setuptools.find_packages('src', exclude=['tests']),
exclude_package_data={'': ['tests']},
)

0 comments on commit 9cf6a47

Please sign in to comment.