Gary Sassano

Results 45 comments of Gary Sassano

It would allow you to set which Python version from your system is used for the project, but I guess it wouldn't be that useful in all situations. Taking the...

Possible non-issues when moving `pyproject.toml` to `PythonProject`: - `pyproject.toml` currently doesn't support "non-package projects" (something that [PEP 735](https://peps.python.org/pep-0735/#motivation) aims to address), so all Python projects would need to be created...

> The PEP you linked has no relation to Poetry The PEP in question isn't directly related to Poetry itself. However, it defines a standard way to manage Python project...

I agree that `pyproject.toml` should be moved out of `Poetry` class, and then `Setuptools` class would need to be refactored in order to replace `setup.py` with `pyproject.toml`, which got introduced...

It would be nice to have an integration with [salesforce/tough-cookie](https://github.com/salesforce/tough-cookie). Here is a code snippet: ```ts import { Cookie, CookieJar } from 'tough-cookie' // Create a cookie jar to store...