Skip to content

Commit

Permalink
better method to exclude example_module...
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed Nov 23, 2023
1 parent f204a6b commit 8abc16b
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 @@ -3,7 +3,7 @@
from setuptools import setup
from setuptools import find_packages

packages = find_packages(where="./pwnshop") + [ "pwnshop.challenges.base_templates", "pwnshop.challenges.base" ]
packages = find_packages(exclude=["example_module"]) + [ "pwnshop.challenges.base_templates", "pwnshop.challenges.base" ]

setup(
name="pwnshop",
Expand Down

0 comments on commit 8abc16b

Please sign in to comment.