Add Poetry support

This commit is contained in:
Viktor Astakhov 2020-04-22 20:48:00 +03:00
parent 02374c69ce
commit 4891a7151f
4 changed files with 16 additions and 0 deletions

View file

@ -20,6 +20,10 @@
(unless (executable-find "conda")
(warn! "Couldn't find conda in your PATH")))
(when (featurep! +poetry)
(if (not (executable-find "poetry"))
(warn! "Couldn't find poetry in your PATH")))
(when (featurep! +cython)
(unless (executable-find "cython")
(warn! "Couldn't find cython. cython-mode will not work.")))