8 lines
151 B
Python
8 lines
151 B
Python
"""
|
|
Entry point for setuptools. Required for editable installs.
|
|
TODO: Remove file after updating to pip 21.3
|
|
"""
|
|
from setuptools import setup
|
|
|
|
setup()
|