"docs/images/vscode:/vscode.git/clone" did not exist on "2eea62160a51c1f75c836059aa4c0aa3de74b145"
Commit d73eb552 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Remove requirements.txt.

It's redundant with setup.py and, also, incomplete (e.g. numpy).
parent 9fcc532d
# progress bars in model download and training scripts
tqdm
# Accessing files from S3 directly.
boto3
# Used for downloading models over HTTP
requests
# For OpenAI GPT
regex != 2019.12.17
# For XLNet
sentencepiece
# For XLM
sacremoses
\ No newline at end of file
......@@ -67,12 +67,19 @@ setup(
packages=find_packages("src"),
install_requires=[
"numpy",
# accessing files from S3 directly
"boto3",
# filesystem locks e.g. to prevent parallel downloads
"filelock",
# for downloading models over HTTPS
"requests",
# progress bars in model download and training scripts
"tqdm",
# for OpenAI GPT
"regex != 2019.12.17",
# for XLNet
"sentencepiece",
# for XLM
"sacremoses",
],
extras_require=extras,
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment