Skip to content

Commit

Permalink
Fix missing packages in PyPI distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
anishathalye committed Jun 2, 2018
1 parent 49b29da commit 7b23188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
from codecs import open # For a consistent encoding
from os import path
import re
Expand Down Expand Up @@ -65,7 +65,7 @@ def find_version(*file_paths):

keywords='dotfiles',

packages=['dotbot'],
packages=find_packages(),

setup_requires=[
'setuptools>=38.6.0',
Expand Down

0 comments on commit 7b23188

Please sign in to comment.