-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
setup.py
34 lines (30 loc) · 1.34 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
# -*- coding: utf-8 -*-
import sys
import axolotl
from setuptools import find_packages, setup
deps = ['cryptography', 'python-axolotl-curve25519>=0.4.1', 'protobuf>=3.0.0.b2']
setup(
name='python-axolotl',
version=axolotl.__version__ ,
packages= find_packages(),
install_requires = deps,
license='GPLv3 License',
author='Tarek Galal',
author_email='tare2.galal@gmail.com',
description="Python port of libaxolotl-android, originally written by Moxie Marlinspik",
url='https://github.com/tgalal/python-axolotl',
download_url='https://github.com/tgalal/python-axolotl/releases',
platforms='any',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Security :: Cryptography',
'Topic :: Software Development :: Libraries :: Python Modules']
)