You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can use from importlib_metadata import version; version('<name>') anywhere where we're using python setup.py --version, and we can get the name from setup.cfg or pyproject.toml if available, and fall back on python setup.py --name.
We can add data_files config using our better tuple and glob handling
We should also handle ensured_targets
Ideally we could replace all of jupyterlab/setup.py
The text was updated successfully, but these errors were encountered:
Ideally we shouldn't need a
setup.py
file.from importlib_metadata import version; version('<name>')
anywhere where we're usingpython setup.py --version
, and we can get the name fromsetup.cfg
orpyproject.toml
if available, and fall back onpython setup.py --name
.data_files
config using our better tuple and glob handlingensured_targets
jupyterlab/setup.py
The text was updated successfully, but these errors were encountered: