mirror of
1
0
Fork 0

Fix missing packages in PyPI distribution

This commit is contained in:
Anish Athalye 2018-06-01 23:08:12 -04:00
parent 49b29da8e7
commit 7b23188602
1 changed files with 2 additions and 2 deletions

View File

@ -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',