blob: 07f92386b282b77755dd6b9e153aabba4e242a24 [file] [log] [blame]
from setuptools import find_packages
from distutils.core import setup
setup(
name='liboqs-python',
version='0.7.2',
author='Open Quantum Safe project',
author_email='[email protected]',
packages=find_packages(exclude=('tests', 'docs', 'examples')),
scripts=[],
url='https://github.com/open-quantum-safe/liboqs-python',
license='LICENSE.txt',
description='Python wrapper for liboqs, providing post-quantum public key cryptography algorithms',
long_description=open('README.md').read(),
)