From bb1b0e32c2e1efe3cbaef440d7f29c34fe7cfe1e Mon Sep 17 00:00:00 2001 From: jar3b Date: Tue, 27 Aug 2019 00:25:44 +0300 Subject: [PATCH] fix: fix setup.py --- setup.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 89b9725..c25af05 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name='logag-python-handler', - version='0.1.4', + version='0.1.5', packages=['logag_handler'], url='https://gitlab.com/logag/logag-python-handler', license='MIT', @@ -10,9 +10,6 @@ setup( author_email='jar3b@outlook.com', description='Python handler for logag', install_requires=[ - 'xid==1.0.5', + 'xid @ git+https://github.com/graham/python_xid.git@master#egg=xid-1.0.5', ], - dependency_links=[ - 'git+https://github.com/graham/python_xid.git@master#egg=xid-1.0.5' - ] )