forked from rxcomm/pyaxo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 965 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import versioneer
import pathlib
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.rst").read_text()
setup(
name='pyaxo_ng',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
long_description=README,
long_description_content_type="text/x-rst",
description='Python implementation of the Axolotl ratchet protocol',
author='Ferris Kwaijtaal',
url='https://github.com/i404788/pyaxo-ng',
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
py_modules=[
'pyaxo_ng'
],
install_requires=[
'pycryptodome>=3.9.8',
'pynacl>=1.4.0',
'diskcache>=4.1.0'
],
tests_require=[
'pytest',
],
)