doomemacs/modules/lang/python/packages.el

35 lines
689 B
EmacsLisp
Raw Normal View History

2017-02-19 18:57:16 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/python/packages.el
;; Major modes
(package! pip-requirements)
2019-10-15 09:09:24 +02:00
(when (featurep! +cython)
(package! cython-mode)
(when (featurep! :tools flycheck)
(package! flycheck-cython)))
;; LSP
(when (featurep! +lsp)
(package! lsp-python-ms))
;; Programming environment
(package! anaconda-mode)
(when (featurep! :completion company)
(package! company-anaconda))
;; Environment management
(package! pipenv)
(package! pyvenv)
(when (featurep! +pyenv)
(package! pyenv-mode))
(when (featurep! +conda)
(package! conda))
;; Testing frameworks
(package! nose)
(package! python-pytest)
2019-05-15 12:58:48 +02:00
;; Import managements
(package! pyimport)
(package! py-isort)