from setuptools import setup setup( name='immudb_wrapper', version='0.1.0', author='Daniil Anfimov', author_email='anfimovdan@gmail.com', description='The wrapper around binary `immudbclient` from Codenotary.', url='https://git.almalinux.org/almalinux/immudb_wrapper', project_urls={ 'Bug Tracker': 'https://git.almalinux.org/almalinux/immudb_wrapper/issues', }, classifiers=[ 'Programming Language :: Python :: 3', 'License :: OSI Approved :: ' 'GNU General Public License v3 or later (GPLv3+)', 'Operating System :: OS Independent', ], py_modules=['immudb_wrapper'], scripts=['immudb_wrapper.py'], install_requires=[ 'GitPython>=3.1.20', 'immudb-py>=1.4.0' ], python_requires='>=3.6', )