2017-02-19 18:57:16 -05:00
|
|
|
;; -*- no-byte-compile: t; -*-
|
|
|
|
;;; lang/python/packages.el
|
|
|
|
|
2018-07-31 14:02:34 +02:00
|
|
|
;; requires: python setuptools
|
2017-05-20 10:23:22 +02:00
|
|
|
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! nose)
|
2018-11-22 12:53:08 -06:00
|
|
|
(package! python-pytest)
|
2017-02-23 00:06:12 -05:00
|
|
|
(package! pip-requirements)
|
2018-07-31 14:02:34 +02:00
|
|
|
|
|
|
|
;; Environmet management
|
|
|
|
(package! pipenv)
|
|
|
|
(when (featurep! +pyenv)
|
|
|
|
(package! pyenv-mode))
|
|
|
|
(when (featurep! +pyvenv)
|
2018-08-04 16:34:01 +02:00
|
|
|
(package! pyvenv))
|
2018-07-31 14:02:34 +02:00
|
|
|
(when (featurep! +conda)
|
|
|
|
(package! conda))
|
|
|
|
|
|
|
|
;; Programming environment
|
2019-02-21 16:08:27 -05:00
|
|
|
(unless (featurep! +lsp)
|
|
|
|
(package! anaconda-mode)
|
2018-06-01 17:14:17 +02:00
|
|
|
(when (featurep! :completion company)
|
|
|
|
(package! company-anaconda)))
|