pkgsrc/editors/py-jedi/Makefile
adam 34d979e366 Jedi is a static analysis tool for Python that can be used in IDEs/editors. Its
historic focus is autocompletion, but does static analysis for now as well.
Jedi is fast and is very well tested. It understands Python on a deeper level
than all other static analysis frameworks for Python.

Jedi has support for two different goto functions. It's possible to search for
related names and to list all names in a Python file and infer them. Jedi
understands docstrings and you can use Jedi autocompletion in your REPL as
well.
2017-10-16 17:03:06 +00:00

19 lines
571 B
Makefile

# $NetBSD: Makefile,v 1.1 2017/10/16 17:03:06 adam Exp $
DISTNAME= jedi-0.11.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= editors python
MASTER_SITES= ${MASTER_SITE_PYPI:=j/jedi/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/davidhalter/jedi
COMMENT= Autocompletion tool for Python that can be used for text editors
LICENSE= mit
DEPENDS+= ${PYPKGPREFIX}-parso>=0.1.0:../../lang/py-parso
DEPENDS+= ${PYPKGPREFIX}-readline-[0-9]*:../../devel/py-readline
USE_LANGUAGES= # none
.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"