hunterakins / pyat

Provide Python functions for reading and writing the files required for the Acoustics Toolbox programs (KRAKEN, BELLHOP, SCOOTER). Also defines objects that represent the basic elements of an acoustic simulation.
GNU General Public License v3.0
30 stars 9 forks source link

Made pyat packagable #11

Closed John-Ragland closed 1 year ago

John-Ragland commented 1 year ago

following guidelines from scientific python I create a pyproject.taml file, and an about.py file with a version number in it.

This allows pyat to be installed locally with pip. (And could eventually be published to pypi in the future) pip install -e <path/to/pyat/directory

All other functionality should be unchanged, but I'll be testing it a little in the coming days.

hunterakins commented 1 year ago

Great thank you John!