From 916cd1ab94cbf4463812332a86e6ff5f79e9824d Mon Sep 17 00:00:00 2001
From: timotheyca <tim@ongoteam.yaconnect.com>
Date: Sun, 19 Dec 2021 19:51:29 +0300
Subject: [PATCH] fix setup.py requirements

---
 setup.py | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/setup.py b/setup.py
index 20fffe0..a686506 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,10 @@
+from pathlib import Path
+
 from setuptools import setup
 
+with open(Path(__file__) / 'requirements.txt') as f:
+    install_requires = f.read().strip().split('\n')
+
 setup(
     name='v6d0auth',
     version='',
@@ -9,9 +14,5 @@ setup(
     author='PARRRATE T&V',
     author_email='',
     description='',
-    install_requires=[
-        'setuptools~=57.0.0',
-        'aiohttp',
-        'PyNaCl~=1.4.0',
-    ]
+    install_requires=install_requires
 )