Works on 3.9

Also made sure users have recent(ish) package versions
This commit is contained in:
Theelgirl 2020-10-28 13:59:44 +00:00 committed by GitHub
parent ab7b9d4b33
commit 0c37efef6c
1 changed files with 4 additions and 3 deletions

View File

@ -65,6 +65,7 @@ setup(
"Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: Microsoft :: Windows :: Windows 10", "Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 8", "Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1", "Operating System :: Microsoft :: Windows :: Windows 8.1",
@ -77,9 +78,9 @@ setup(
"cython >= 3.0a6" "cython >= 3.0a6"
], ],
install_requires=[ install_requires=[
"bitstring", "bitstring >= 3.1.6",
"pillow", "pillow >= 7.2.0",
"tqdm", "tqdm >= 4.49.0",
"cryptography >= 3.1.1", "cryptography >= 3.1.1",
"pycryptodome >= 3.9.8" "pycryptodome >= 3.9.8"
], ],