File: setup.py

package info (click to toggle)
consonance 0.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 324 kB
  • sloc: python: 993; makefile: 4
file content (36 lines) | stat: -rw-r--r-- 1,829 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
# -*- coding: utf-8 -*-
import consonance
from setuptools import find_packages, setup

setup(
    name='consonance',
    version=consonance.__version__,
    packages=find_packages(exclude=['tests', 'examples']),
    install_requires=['dissononce>=0.34.3', 'python-axolotl-curve25519', 'transitions', 'protobuf>=3.6.0'],
    license='GPL-3+',
    author='Tarek Galal',
    author_email='tare2.galal@gmail.com',
    description="WhatsApp's handshake implementation using Noise Protocol",
    long_description="This library implements WhatsApp's handshake process which makes use of "
                     "Noise Pipes with Curve25519, AES-GCM, and SHA256 from Noise Protocol",
    platforms='any',
    classifiers=['Development Status :: 3 - Alpha',
                 'Intended Audience :: Developers',
                 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
                 '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']
)