Skip to content

Commit

Permalink
Exclude static dir from package discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
jma127 committed Nov 2, 2024
1 parent 498ad39 commit 6fa910a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
url='https://github.com/jma127/pcu',
license='BSD-new',

packages=find_packages(),
packages=find_packages(exclude=['pcu.static', 'pcu.static.*']),
scripts=['scripts/pcu'],
include_package_data=True,

package_data={
"pcu": ["static/**/*"],
},

install_requires=[
'colorama>=0.4,<1',
Expand Down

0 comments on commit 6fa910a

Please sign in to comment.