Skip to content

Commit

Permalink
📝 Add project description
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelange committed Apr 9, 2020
1 parent 31abc16 commit e29761f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def read_readme(path):

setup(
name="retrie",
description="Efficient Trie-based regex unions for blacklist/whitelist filtering and one-pass mapping-based string replacing",
long_description=read_readme(readme_path),
long_description_content_type="text/markdown",
setup_requires=["setuptools_scm"],
Expand Down
2 changes: 1 addition & 1 deletion src/retrie/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
try:
from functools import cached_property # type: ignore
except ImportError:
except ImportError: # pragma: no cover
from cached_property import cached_property # noqa:F401

# version based on .git/refs/tags - make a tag/release locally, or on GitHub (and pull)
Expand Down

0 comments on commit e29761f

Please sign in to comment.