Skip to content

Commit b874fb3

Browse files
committed
fix: Add setup.py for Python 3.6 pip compat (editable installs)
1 parent 41ab2ac commit b874fb3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

setup.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env python
2+
"""Setup script for backwards compatibility with Python 3.6 pip."""
3+
4+
from setuptools import setup
5+
6+
# All configuration is in pyproject.toml
7+
# This file exists for compatibility with older pip versions
8+
# that don't support PEP 660 (editable installs from pyproject.toml)
9+
setup()

0 commit comments

Comments
 (0)