diff --git a/requirements.txt b/requirements.txt index dabfbae..048818e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -protobuf>= 3.19.3, <= 3.20.1 \ No newline at end of file +protobuf == 3.20.3 \ No newline at end of file diff --git a/setup.py b/setup.py index 2238244..4d14c0d 100644 --- a/setup.py +++ b/setup.py @@ -3,12 +3,12 @@ setup( name="pySSLVision", packages=find_packages() + find_packages(where="./protocols"), - version="1.0.1", + version="2.0.0", description="Creates a network socket to communicate with the SSL Vision", long_description_content_type='text/markdown', long_description=open('README.md').read(), author="Project-Neon", author_email="projectneon@gmail.com", license="GNU", - #install_requires=['protobuf==3.6.1'], + install_requires=['protobuf==3.20.3'], )