mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
The pyvenv package isn't going anywhere, it's just needed by pipenv.el (which surprisingly doesn't declare it as a dependency).
23 lines
472 B
EmacsLisp
23 lines
472 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/python/packages.el
|
|
|
|
;; requires: python setuptools
|
|
|
|
(package! nose)
|
|
(package! python-pytest)
|
|
(package! pip-requirements)
|
|
|
|
;; Environmet management
|
|
(package! pipenv)
|
|
(package! pyvenv)
|
|
(when (featurep! +pyenv)
|
|
(package! pyenv-mode))
|
|
(when (featurep! +conda)
|
|
(package! conda))
|
|
|
|
;; Programming environment
|
|
(unless (featurep! +lsp)
|
|
(package! anaconda-mode)
|
|
(when (featurep! :completion company)
|
|
(package! company-anaconda)))
|