Closed JohnGiorgi closed 2 years ago
Installing this project from git using
pip install git+https://github.com/PathwayCommons/pathway-abstract-classifier.git
was failing because it wasn't structured as a python package. In general, you need:
"name"
pyproject.toml
__init__.py
I have made these changes and confirm that the package is now installable with:
pip install git+https://github.com/PathwayCommons/pathway-abstract-classifier.git@create-top-level-directory
@create-top-level-directory can be dropped once this is merged into main.
@create-top-level-directory
Installing this project from git using
was failing because it wasn't structured as a python package. In general, you need:
"name"
field in thepyproject.toml
__init__.py
. This file can be blank.I have made these changes and confirm that the package is now installable with:
@create-top-level-directory
can be dropped once this is merged into main.