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