Skip to content

Commit

Permalink
fixing package versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelsec committed May 30, 2023
1 parent 51c7bd0 commit ed4178a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author_email="info@skelsecprojects.com",

# Packages
packages=find_packages(),
packages=find_packages(exclude=["tests*"]),

# Include additional files into the package
include_package_data=True,
Expand All @@ -40,18 +40,18 @@

# long_description=open("README.txt").read(),
python_requires='>=3.7',
classifiers=(
classifiers=[
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
],
install_requires=[
'unicrypto>=0.0.10',
'asyauth>=0.0.13',
'asysocks>=0.2.5',
'unicrypto==0.0.10',
'asyauth==0.0.14',
'asysocks==0.2.7',
'asn1crypto>=1.3.0',
'winacl>=0.1.7',
'winacl==0.1.7',
'prompt-toolkit>=3.0.2',
'tqdm',
'wcwidth',
Expand Down

0 comments on commit ed4178a

Please sign in to comment.