1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4from setuptools import setup
5
6NAME = 'libnacl'
7DESC = 'Python bindings for libsodium based on ctypes'
8
9# Version info -- read without importing
10_locals = {}
11with open('libnacl/version.py') as fp:
12    exec(fp.read(), None, _locals)
13VERSION = _locals['__version__']
14
15setup(name=NAME,
16      version=VERSION,
17      description=DESC,
18      author='Thomas S Hatch',
19      author_email='thatch@saltstack.com',
20      url='https://libnacl.readthedocs.org/',
21      classifiers=[
22          'Operating System :: OS Independent',
23          'License :: OSI Approved :: Apache Software License',
24          'Programming Language :: Python',
25          'Programming Language :: Python :: 2.6',
26          'Programming Language :: Python :: 2.7',
27          'Programming Language :: Python :: 3.4',
28          'Development Status :: 5 - Production/Stable',
29          'Intended Audience :: Developers',
30          'Topic :: Security :: Cryptography',
31          ],
32      packages=['libnacl'])
33