File: setup.py

package info (click to toggle)
dissononce 0.34.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,892 kB
  • sloc: python: 2,121; makefile: 4
file content (41 lines) | stat: -rw-r--r-- 1,942 bytes parent folder | download | duplicates (2)
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']
    },
    test_requires=['pytest'],
    license='MIT',
    author='Tarek Galal',
    author_email='tare2.galal@gmail.com',
    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']
)