Skip to content

Commit 2a3c102

Browse files
authored
Merge pull request #98 from HashPals/skeletal-update-setup
Update setup.py and fix typo
2 parents 990bb06 + b1a988f commit 2a3c102

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

packages/setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
setup(
1515
long_description=readme,
1616
name="name-that-hash",
17-
version="0.6.0",
18-
description="The Modern Hash Identifcation System",
19-
python_requires="==3.*,>=3.7.0",
17+
version="1.7.2",
18+
description="The Modern Hash Identification System",
19+
python_requires="==3.*,>=3.6.0",
2020
author="brandon",
2121
author_email="[email protected]",
2222
license="GPL-3.0-or-later",
@@ -26,9 +26,9 @@
2626
"name-that-hash = name_that_hash.runner:main",
2727
]
2828
},
29-
packages=["Name_That_Hash"],
29+
packages=["name_that_hash"],
3030
package_dir={"": "."},
3131
package_data={},
32-
install_requires=["click==7.*,>=7.1.2", "loguru==0.*,>=0.5.3", "rich==9.*,>=9.9.0"],
33-
extras_require={"dev": ["pytest==5.*,>=5.2.0"]},
32+
install_requires=["click==7.*,>=7.1.2", "rich<11.0,>=9.9"],
33+
extras_require={"dev": ["pytest==6.*,>=6.2.0"]},
3434
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "name-that-hash"
33
version = "1.7.2"
4-
description = "The Modern Hash Identifcation System"
4+
description = "The Modern Hash Identification System"
55
authors = ["brandon <[email protected]>"]
66
license = "GPL-3.0-or-later"
77

0 commit comments

Comments
 (0)