Also: - Reorganizes some :lang modules' packages.el file. - Adds setuptools check in lang/python - Adds javac check in lang/java - Removes the depends-on! macro
22 lines
447 B
EmacsLisp
22 lines
447 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/python/packages.el
|
|
|
|
;; Major modes
|
|
(package! pip-requirements)
|
|
|
|
;; 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)
|