scooby icon indicating copy to clipboard operation
scooby copied to clipboard

🐶 🕵️ Great Dane turned Python environment detective

Results 15 scooby issues
Sort by recently updated
recently updated
newest added

This PR is mainly meant for discussion. These would be the changes required to change to `setuptools_scm`. The advantage of this approach is that you never have to hard-code a...

# Command-line interface CLI Initial implementation - very basic, no tests so far. I am more interested to know first if you are interested in this at all (@banesullivan, @akaszynski)....

Hey there! Had a potential feature to suggest: I find myself often wanting to quickly make a `Report` based on the contents of a project's `requirements.txt` file. Maybe we could...

Try the possibility of grep'ing `pip freeze` to get the version information. Works also if there is no `__version__`-information. Off-spin from #36

We should implement the ability to create a minimalist `requirements.txt` or conda environment YAML config file based on the `Report` All too often, I need some sort of environment config...

How would we get info about the GPU?

What packages should be in the knowledge base? Should we make it only for packages that do not have a `__version__` attribute?

Can you test if that works in your env @banesullivan ? Closes #95

``` $ python -c "import pyvista;print(pyvista.Report())" Traceback (most recent call last): File "", line 1, in File "/opt/hostedtoolcache/Python/3.10.6/x64/lib/python3.10/site-packages/scooby/report.py", line 298, in __repr__ for txt in textwrap.wrap(self._mkl_info, self.text_width - 4): File...

Related to https://github.com/pyvista/pyvista/issues/3224