3454a55636
cffconvert / validate (push) Waiting to run
ci-workflow / pre-commit (push) Waiting to run
ci-workflow / Minimal NLTK Download Test (macos-latest) (push) Waiting to run
ci-workflow / Minimal NLTK Download Test (ubuntu-latest) (push) Waiting to run
ci-workflow / Minimal NLTK Download Test (windows-latest) (push) Waiting to run
ci-workflow / Python 3.10 on macos-latest (push) Blocked by required conditions
ci-workflow / Python 3.11 on macos-latest (push) Blocked by required conditions
ci-workflow / Python 3.12 on macos-latest (push) Blocked by required conditions
ci-workflow / Python 3.13 on macos-latest (push) Blocked by required conditions
ci-workflow / Python 3.14 on macos-latest (push) Blocked by required conditions
ci-workflow / Python 3.14t on macos-latest (push) Blocked by required conditions
ci-workflow / Python 3.10 on ubuntu-latest (push) Blocked by required conditions
ci-workflow / Python 3.11 on ubuntu-latest (push) Blocked by required conditions
ci-workflow / Python 3.12 on ubuntu-latest (push) Blocked by required conditions
ci-workflow / Python 3.13 on ubuntu-latest (push) Blocked by required conditions
ci-workflow / Python 3.14 on ubuntu-latest (push) Blocked by required conditions
ci-workflow / Python 3.14t on ubuntu-latest (push) Blocked by required conditions
ci-workflow / Python 3.10 on windows-latest (push) Blocked by required conditions
ci-workflow / Python 3.11 on windows-latest (push) Blocked by required conditions
ci-workflow / Python 3.12 on windows-latest (push) Blocked by required conditions
ci-workflow / Python 3.13 on windows-latest (push) Blocked by required conditions
ci-workflow / Python 3.14 on windows-latest (push) Blocked by required conditions
55 lines
1.6 KiB
Makefile
55 lines
1.6 KiB
Makefile
# Natural Language Toolkit: source Makefile
|
|
#
|
|
# Copyright (C) 2001-2026 NLTK Project
|
|
# Author: Steven Bird <stevenbird1@gmail.com>
|
|
# Edward Loper <edloper@gmail.com>
|
|
# URL: <https://www.nltk.org/>
|
|
# For license information, see LICENSE.TXT
|
|
|
|
PYTHON = python
|
|
VERSION = $(shell $(PYTHON) -c 'import nltk; print(nltk.__version__)' | sed '/^Warning: */d')
|
|
NLTK_URL = $(shell $(PYTHON) -c 'import nltk; print(nltk.__url__)' | sed '/^Warning: */d')
|
|
|
|
.PHONY: all clean clean_code
|
|
|
|
all: dist
|
|
|
|
########################################################################
|
|
# TESTING
|
|
########################################################################
|
|
DOCTEST_FILES = nltk/test/*.doctest
|
|
DOCTEST_CODE_FILES = nltk/*.py nltk/*/*.py
|
|
|
|
doctest:
|
|
pytest $(DOCTEST_FILES)
|
|
|
|
doctest_code:
|
|
pytest $(DOCTEST_CODE_FILES)
|
|
|
|
demotest:
|
|
find nltk -name "*.py"\
|
|
-and -not -path *misc* \
|
|
-and -not -name brown_ic.py \
|
|
-exec echo ==== '{}' ==== \; -exec python '{}' \;
|
|
|
|
########################################################################
|
|
# DISTRIBUTIONS
|
|
########################################################################
|
|
|
|
dist: clean_code
|
|
$(PYTHON) -m build
|
|
|
|
########################################################################
|
|
# CLEAN
|
|
########################################################################
|
|
|
|
clean: clean_code
|
|
rm -rf build web/_build iso dist api MANIFEST nltk-$(VERSION) nltk.egg-info
|
|
|
|
clean_code:
|
|
rm -f `find nltk -name '*.pyc'`
|
|
rm -f `find nltk -name '*.pyo'`
|
|
rm -f `find . -name '*~'`
|
|
rm -rf `find . -name '__pycache__'`
|
|
rm -f MANIFEST # regenerate manifest from MANIFEST.in
|