2017-02-19 18:57:16 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/python/packages.el
|
|
|
|
|
2019-04-22 03:10:25 -04:00
|
|
|
;; Major modes
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! pip-requirements)
|
2019-10-15 09:09:24 +02:00
|
|
|
(when (featurep! +cython)
|
|
|
|
(package! cython-mode)
|
|
|
|
(when (featurep! :tools flycheck)
|
|
|
|
(package! flycheck-cython)))
|
2018-07-31 14:02:34 +02:00
|
|
|
|
2019-07-26 22:32:17 -04:00
|
|
|
;; LSP
|
|
|
|
(when (featurep! +lsp)
|
|
|
|
(package! lsp-python-ms))
|
|
|
|
|
2019-04-22 03:10:25 -04:00
|
|
|
;; Programming environment
|
|
|
|
(package! anaconda-mode)
|
|
|
|
(when (featurep! :completion company)
|
|
|
|
(package! company-anaconda))
|
|
|
|
|
|
|
|
;; Environment management
|
2018-07-31 14:02:34 +02:00
|
|
|
(package! pipenv)
|
2019-03-04 20:46:20 -05:00
|
|
|
(package! pyvenv)
|
2018-07-31 14:02:34 +02:00
|
|
|
(when (featurep! +pyenv)
|
|
|
|
(package! pyenv-mode))
|
|
|
|
(when (featurep! +conda)
|
|
|
|
(package! conda))
|
|
|
|
|
2019-04-22 03:10:25 -04:00
|
|
|
;; Testing frameworks
|
|
|
|
(package! nose)
|
|
|
|
(package! python-pytest)
|
2019-05-15 12:58:48 +02:00
|
|
|
|
|
|
|
;; Import managements
|
|
|
|
(package! pyimport)
|
2019-12-15 16:25:27 +01:00
|
|
|
(package! py-isort)
|