34 lines
690 B
EmacsLisp
34 lines
690 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/python/packages.el
|
|
|
|
;; Major modes
|
|
(package! pip-requirements)
|
|
(when (featurep! +cython)
|
|
(package! cython-mode)
|
|
(when (featurep! :checkers syntax)
|
|
(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)
|
|
|
|
;; Import managements
|
|
(package! pyimport)
|
|
(package! py-isort)
|