Skip to content

Commit

Permalink
include tests in sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Jun 14, 2023
1 parent 62ab689 commit fdec2a2
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,9 @@ def run_setup():
install_requires=install_requires,
extras_require=extras_require,
package_dir={'': 'src'},
packages=find_packages(where='src',
# Note that we intentionally include the top-level `test` package for
# functionality like the @experimental and @integrative decorators:
exclude=['*.test.*']),
packages=find_packages(where='src'),
package_data={
'': ['*.yml', '*.yaml', 'cloud-config'],
'': ['*.yml', '*.yaml', 'cloud-config', '*.cwl'],
},
# Unfortunately, the names of the entry points are hard-coded elsewhere in the code base so
# you can't just change them here. Luckily, most of them are pretty unique strings, and thus
Expand Down

0 comments on commit fdec2a2

Please sign in to comment.