1# -*- coding: utf-8 -*-
2
3import sys
4
5import axolotl
6from setuptools import find_packages, setup
7
8deps = ['cryptography', 'python-axolotl-curve25519', 'protobuf>=3.0.0.b2']
9
10setup(
11    name='python-axolotl',
12    version=axolotl.__version__ ,
13    packages= find_packages(),
14    install_requires = deps,
15    license='GPLv3 License',
16    author='Tarek Galal',
17    author_email='tare2.galal@gmail.com',
18    description="Python port of libaxolotl-android, originally written by Moxie Marlinspik",
19    url='https://github.com/tgalal/python-axolotl',
20    download_url='https://github.com/tgalal/python-axolotl/releases',
21    platforms='any',
22    classifiers=['Development Status :: 5 - Production/Stable',
23                 'Intended Audience :: Developers',
24                 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
25                 'Natural Language :: English',
26                 'Programming Language :: Python :: 2',
27                 'Programming Language :: Python :: 2.7',
28                 'Programming Language :: Python :: 3',
29                 'Programming Language :: Python :: 3.3',
30                 'Programming Language :: Python :: 3.4',
31                 'Programming Language :: Python :: 3.5',
32                 'Topic :: Security :: Cryptography',
33                 'Topic :: Software Development :: Libraries :: Python Modules']
34)
35