blob: edd43dde9a43b7e1b8bf6290d032ddeedfe002b9 [file] [log] [blame]
from setuptools import find_packages
from distutils.core import setup
setup(
name='liboqs-python',
version='0.2.1',
author='liboqs team',
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(),
)