diff --git a/NEWS.rst b/NEWS.rst index 0014a4de..9434ef66 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -1,3 +1,14 @@ +v2.12.0 +======= + +Features +-------- + +- Simplify dictionary keys access in _ColorProd function. (#63) +- Allow @font-face rules nested inside @media rules. (#68) +- Added REM and other CSS3 length units to length macros. (#69) + + v2.11.1 ======= diff --git a/README.rst b/README.rst index 39e36a7b..cfc2c651 100644 --- a/README.rst +++ b/README.rst @@ -25,6 +25,8 @@ Overview ======== A Python package to parse and build CSS Cascading Style Sheets. DOM only, not any rendering facilities! +You can find more documentation at `cssutils.readthedocs.io `_. + Based upon and partly implementing the following specifications : `CSS 2.1rev1 `__ diff --git a/newsfragments/63.feature.rst b/newsfragments/63.feature.rst deleted file mode 100644 index 029621a7..00000000 --- a/newsfragments/63.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Simplify dictionary keys access in _ColorProd function. diff --git a/newsfragments/68.feature.rst b/newsfragments/68.feature.rst deleted file mode 100644 index a4d3e028..00000000 --- a/newsfragments/68.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Allow @font-face rules nested inside @media rules. diff --git a/newsfragments/69.feature.rst b/newsfragments/69.feature.rst deleted file mode 100644 index 464ec95e..00000000 --- a/newsfragments/69.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Added REM and other CSS3 length units to length macros. diff --git a/pyproject.toml b/pyproject.toml index bb815044..d35080aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,14 +92,10 @@ csscombine = "cssutils.scripts.csscombine:main" cssparse = "cssutils.scripts.cssparse:main" [tool.setuptools.packages.find] -exclude = [ - # duplicate exclusions for pypa/setuptools#2688 - "docs", - "docs.*", - "examples*", - "sheets", - "sheets.*", - "tools*", +include = [ + "cssutils", + "cssutils.*", + "encutils", ] namespaces = true