-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
41 lines (40 loc) · 1.9 KB
/
setup.py
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
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
import dissononce
from setuptools import find_packages, setup
setup(
name='dissononce',
version=dissononce.__version__,
packages=find_packages(exclude=['tests*', 'examples']),
install_requires=['cryptography>=2.5'],
extras_require={
'GuardedHandshakeState': ['transitions']
},
tests_require=['pytest'],
license='MIT',
author='Tarek Galal',
author_email='[email protected]',
description="Noise Protocol Framework Implementation for Python2-3.x",
long_description="Dissononce is a python implementation for Noise Protocol Framework. A main goal of this project "
"is to provide a simple, easy to read and understand practical reference for Noise enthusiasts, "
"implementers and users.",
platforms='any',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules']
)