mirror of
1
0
Fork 0

Add setup_requires

Both setuptools and wheel need to be at some minimum version to be able
to upload Markdown READMEs.
This commit is contained in:
Anish Athalye 2018-06-01 07:57:23 -04:00
parent 02923042a8
commit 1dc80c77a7
1 changed files with 5 additions and 0 deletions

View File

@ -67,6 +67,11 @@ setup(
packages=['dotbot'],
setup_requires=[
'setuptools>=38.6.0',
'wheel>=0.31.0',
],
install_requires=[
'PyYAML>=3.12,<4',
],