GLVis / pyglvis

GLVis Jupyter Widget
BSD 3-Clause "New" or "Revised" License
12 stars 3 forks source link

Naming conventions #46

Open justinlaughlin opened 4 days ago

justinlaughlin commented 4 days ago

Currently, our naming is:

Which means the commands to install are either

git clone git@github.com:GLVis/pyglvis.git
cd pyglvis
pip install .

or

pip install glvis

However, because of the two registered packages on pypi, pip install pyglvis will work, and will give the wrong package.

To use the package the syntax is

from glvis import glvis

glvis(data)

My suggestion would be that we

justinlaughlin commented 3 days ago

This is mostly minor except for the pypi registries. That one we really should choose one and delete the other.