Fix missing packages in PyPI distribution
This commit is contained in:
parent
49b29da8e7
commit
7b23188602
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -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
|
||||
|
@ -65,7 +65,7 @@ setup(
|
|||
|
||||
keywords='dotfiles',
|
||||
|
||||
packages=['dotbot'],
|
||||
packages=find_packages(),
|
||||
|
||||
setup_requires=[
|
||||
'setuptools>=38.6.0',
|
||||
|
|
Loading…
Reference in a new issue