juliaturc commited on
Commit
6c5df21
·
1 Parent(s): efee316

Add setup.py file, otherwise `pip install -e .` won't work.

Browse files
Files changed (1) hide show
  1. setup.py +4 -0
setup.py ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ # Work-around the fact that `pip install -e .` doesn't work with `pyproject.toml` files.
2
+ from setuptools import setup
3
+
4
+ setup()