fix entrypoints and imports to make fxa_vectors work

This commit is contained in:
Brian Warner 2014-07-14 12:20:58 -07:00
Родитель 154f8b4dd7
Коммит ba1abb1340
2 изменённых файлов: 5 добавлений и 3 удалений

Просмотреть файл

@ -4,7 +4,7 @@
from hashlib import sha256
import hmac
from fxa_client.hkdf import HKDF
from .hkdf import HKDF
import itertools, binascii, time, sys
from six import binary_type, print_, int2byte, b
@ -16,7 +16,7 @@ import scrypt
# by Armin Ronacher: https://pypi.python.org/pypi/simple-pbkdf2/1.0 . Note
# that v1.0 has a bug which causes segfaults when num_iterations is greater
# than about 88k.
from fxa_client.pbkdf2 import pbkdf2_bin
from .pbkdf2 import pbkdf2_bin
# other options:
# * https://pypi.python.org/pypi/PBKDF/1.0

Просмотреть файл

@ -26,5 +26,7 @@ setup(
"Programming Language :: Python :: 3.3",
],
entry_points = {"console_scripts":
["fxa-client = fxa_client.fxa_client:main"]},
["fxa-client = fxa_client.fxa_client:main",
"fxa-vectors = fxa_client.fxa_vectors:main"
]},
)