rossant / ipycache

Defines a %%cache cell magic in the IPython notebook to cache results of long-lasting computations in a persistent pickle file
BSD 3-Clause "New" or "Revised" License
138 stars 35 forks source link

Move most config from `setup.py` to `setup.cfg` to simplify static config management #69

Open mbrukman opened 2 years ago

mbrukman commented 2 years ago

We are currently using setup.py and have code to read in a README.md file as a string, but we don't need this to be in code, since none of our configuration is dynamic. Instead, we can have a very simple setup.py and move our config into a static setup.cfg instead.

Docs: