from setuptools import setup, find_packages from codecs import open from os import path here = path.abspath(path.dirname(__file__)) # Get the long description from the README file with open(path.join(here, 'README.md'), encoding='utf-8') as f: long_description = f.read() setup( name='onlykey', version='0.6', description='OnlyKey client and command-line tool', long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/trustcrypto/python-onlykey', author='CryptoTrust', author_email='admin@crp.to', license='MIT', packages=find_packages(exclude=['contrib', 'docs', 'tests']), entry_points = { 'console_scripts': [ 'onlykey-cli=onlykey.cli:main' ], }, python_requires = '>3.6', install_requires=['hidapi', 'aenum', 'six', 'prompt_toolkit>=2', 'ed25519>=1.4', 'ecdsa>=0.13', 'Cython>=0.23.4'], )