Skip to content

Commit 268017a

Browse files
committed
Add stub setup.py for editable installations.
In order to run: pip install -e .[docs,tests] We found that you either need to add a stub setup.py like this or be using a very recent version of pip. In order to streamline the installation process on more machines with a relaxed pip version constraint, this stub is added. Fixes terrapower#1639.
1 parent 0668e8c commit 268017a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
Stub setup.py to allow editable installations on older pips.
3+
"""
4+
from setuptools import setup
5+
6+
setup()

0 commit comments

Comments
 (0)