[Python-ideas] Re: Python standard library TOML module

2021-12-13 Thread Neil Girdhar
FYI: The flake8 project refuses to add toml configuration file support in 
part because there is no standard library toml 
module: https://github.com/PyCQA/flake8/issues/234#issuecomment-812800722

The thread was eventually locked by the project owner, and a project sprang 
up to try to address the issue: https://github.com/csachs/pyproject-flake8

Best,

Neil
On Saturday, December 11, 2021 at 11:57:24 AM UTC-5 Pradyun Gedam wrote:

> The line of reasoning for the packaging tooling choosing TOML is 
> elaborated upon in PEP 518 (
> https://www.python.org/dev/peps/pep-0518/#other-file-formats) and that 
> choice was informed by a survey of the existing formats: 
> https://gist.github.com/njsmith/78f68204c5d969f8c8bc645ef77d4a8f.
> ___
> Python-ideas mailing list -- python...@python.org
> To unsubscribe send an email to python-id...@python.org
> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> Message archived at 
> https://mail.python.org/archives/list/python...@python.org/message/SDAJ4DCK7GJIMEONNYJ3NNXKJYGQWJDF/
>  
> 
> Code of Conduct: http://python.org/psf/codeofconduct/
>
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/SFWQLF2RVIMDAS3WXYFDNPZ7HMIGAHWC/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-ideas] Re: Python standard library TOML module

2021-12-11 Thread Pradyun Gedam
The line of reasoning for the packaging tooling choosing TOML is elaborated 
upon in PEP 518 (https://www.python.org/dev/peps/pep-0518/#other-file-formats) 
and that choice was informed by a survey of the existing formats: 
https://gist.github.com/njsmith/78f68204c5d969f8c8bc645ef77d4a8f.
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/SDAJ4DCK7GJIMEONNYJ3NNXKJYGQWJDF/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-ideas] Re: Python standard library TOML module

2021-12-11 Thread Finn Mason
Yes!! This is something I've thought about proposing for a while, but I was
too lazy to do it. TOML is a wonderful language with an important place in
the Python ecosystem.


--
Finn (Mobile)

On Fri, Dec 10, 2021, 9:57 AM Sebastian Koslowski <
sebastian.koslow...@gmail.com> wrote:

> There is already some info/discussion over on the bug tracker:
>
> https://bugs.python.org/issue40059
>
> Sebastian
> ___
> Python-ideas mailing list -- python-ideas@python.org
> To unsubscribe send an email to python-ideas-le...@python.org
> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-ideas@python.org/message/ZQOD6TEOWAB47WL2IMQS2W67IAKS46NR/
> Code of Conduct: http://python.org/psf/codeofconduct/
>
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/YNA3NQDQEUY56M54INRQHJCYD44I4SI7/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-ideas] Re: Python standard library TOML module

2021-12-10 Thread Sebastian Koslowski
There is already some info/discussion over on the bug tracker:

https://bugs.python.org/issue40059

Sebastian
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/ZQOD6TEOWAB47WL2IMQS2W67IAKS46NR/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-ideas] Re: Python standard library TOML module

2021-12-10 Thread Christopher Barker
Yes please!

It always seemed very odd to me that the standard packaging system would
require a non-standard library.

Surely TOML is stable enough by now?

-CHB

On Fri, Dec 10, 2021 at 4:06 AM Valentin Berlier 
wrote:

> Yes. This is desperately needed. Usually I'm not a big fan of adding new
> standard library modules but in this case since toml is becoming such a
> critical part of packaging it seems like a no-brainer.
> ___
> Python-ideas mailing list -- python-ideas@python.org
> To unsubscribe send an email to python-ideas-le...@python.org
> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-ideas@python.org/message/B5T6TMAK2MSCQ4IV3VLRSFS6FBVGHRVN/
> Code of Conduct: http://python.org/psf/codeofconduct/
>
-- 
Christopher Barker, PhD (Chris)

Python Language Consulting
  - Teaching
  - Scientific Software Development
  - Desktop GUI and Web Development
  - wxPython, numpy, scipy, Cython
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/33BQIQVJAAJZWIYPZJRJLXLW5VOPXTKQ/
Code of Conduct: http://python.org/psf/codeofconduct/


[Python-ideas] Re: Python standard library TOML module

2021-12-10 Thread Valentin Berlier
Yes. This is desperately needed. Usually I'm not a big fan of adding new 
standard library modules but in this case since toml is becoming such a 
critical part of packaging it seems like a no-brainer.
___
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/B5T6TMAK2MSCQ4IV3VLRSFS6FBVGHRVN/
Code of Conduct: http://python.org/psf/codeofconduct/