allfed / Seaweed-Growth-Model

Model to calculate where seaweed can grow in a nuclear war
https://allfed.github.io/Seaweed-Growth-Model/
Apache License 2.0
8 stars 5 forks source link

Rename the Repository to make it a valid python package name #34

Open Recktenwald opened 1 year ago

Recktenwald commented 1 year ago

Python packages cannot have "-" in their names. In particular "Seaweed-Growth-Model" is not a valid name.

florianjehn commented 1 year ago

Ah interesting. Wasn't aware of that. Are underscores okay? But I also usually install it just as a local package with "pip install -e . ", so I don't run into this issue. Am I correct to assume that this is mainly important when we want to make it installable for everyone, but less important when we only plan to install it locally?