Skip to content

Commit

Permalink
Add 'regex' to requirements, and include 'word.txt' as data file.
Browse files Browse the repository at this point in the history
  • Loading branch information
fkodom committed Feb 3, 2022
1 parent ed07cc4 commit c8bd19a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ def get_version_tag() -> str:
description="A minimal Python library for playing and solving 'Wordle' problems",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=["colorama"],
install_requires=["colorama", "regex"],
extras_require=extras_require,
data_files=["data", ("words.txt")],
entry_points={
"console_scripts": [
"play-wordle=wordle.game:main",
Expand Down

0 comments on commit c8bd19a

Please sign in to comment.