Remove 'scrypt' as a dependency and add instruction te be installed manually. (#22)

This commit is contained in:
Cosmin Malutan 2014-09-16 17:16:22 +03:00
Родитель 321d8268d9
Коммит d03f86de9a
3 изменённых файлов: 6 добавлений и 1 удалений

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

@ -32,3 +32,8 @@ sudo apt-get install build-essential libssl-dev libffi-dev python-dev
The source tree also contains a tool to create test vectors for the FxA auth
protocol.
For that you'll need an additional python package which needs to be installed
manually:
```bash
pip install -r requirements.txt
```

1
requirements.txt Normal file
Просмотреть файл

@ -0,0 +1 @@
scrypt==0.6.1

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

@ -15,7 +15,6 @@ setup(
"requests",
"PyBrowserID",
"PyHawk",
"scrypt",
"six",
],
packages = ["fxa_client"],