summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2017-11-18 22:22:44 -0500
committerOwen Jacobson <owen@grimoire.ca>2017-11-18 22:22:44 -0500
commit24219901c762e82126ea2e010d3a7efbf5c6647f (patch)
tree0341f679ec7379b2b7a27c31cea60e56adac9911 /setup.py
parent64b913d16c8bfe93ceca7b37316909ad1d6f4d26 (diff)
Stop installing pycache dirs, too
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ef64cf7..f377882 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ setup(
name='actinide',
version='0.1.0',
packages=find_packages(
- exclude=['tests', 'tests.*'],
+ exclude=['tests', 'tests.*', '*.__pycache__'],
),
scripts=['bin/actinide-repl'],