From dbcf6d0f7ff6ded96b27c8116131de4fa6937981 Mon Sep 17 00:00:00 2001 From: David Beazley Date: Tue, 11 Oct 2022 08:44:48 -0500 Subject: [PATCH] Added retirement notice --- MANIFEST.in | 1 + README.rst | 8 ++++++++ setup.cfg | 22 +--------------------- 3 files changed, 10 insertions(+), 21 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index fa29454..53e834d 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,4 @@ +include Makefile CONTRIBUTING.md recursive-include example * recursive-include test * recursive-include docs * diff --git a/README.rst b/README.rst index 4ebd14e..62de558 100644 --- a/README.rst +++ b/README.rst @@ -33,6 +33,14 @@ SLY is a modern library for performing lexing and parsing. It implements the LALR(1) parsing algorithm, commonly used for parsing and compiling various programming languages. +Important Notice : October 11, 2022 +----------------------------------- +I'm officially retiring the SLY project. There will be no further +releases. Should you choose to still use it, the GitHub repo will +remain alive--feel free to vendor the code and report bugs as you see +fit. I'd like to thank everyone who contributed to the +project. -- Dave + Requirements ------------ diff --git a/setup.cfg b/setup.cfg index 2d65589..288527a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,24 +15,4 @@ classifiers = package_dir = =src -packages = find: - -[options.packages.find] -where = src - -[tool.pytest] -testpaths = test - -[coverage:run] -branch = True - -[tox:tox] -isolated_build = True -envlist = py311,py310,py39 - -[testenv] -deps = - pytest - pytest-cov - -commands = pytest {posargs} +packages = sly