# when modifying the following list, make sure to update src/transformers/dependency_versions_check.py
# when modifying the following list, make sure to update src/transformers/dependency_versions_check.py
install_requires=[
install_requires=[
deps["dataclasses"]+";python_version<'3.7'",# dataclasses for Python versions that don't have it
deps["importlib_metadata"]+";python_version<'3.8'",# importlib_metadata for Python versions that don't have it
deps["importlib_metadata"]+";python_version<'3.8'",# importlib_metadata for Python versions that don't have it
deps["filelock"],# filesystem locks, e.g., to prevent parallel downloads
deps["filelock"],# filesystem locks, e.g., to prevent parallel downloads
deps["huggingface-hub"],
deps["huggingface-hub"],
...
@@ -390,12 +389,12 @@ install_requires = [
...
@@ -390,12 +389,12 @@ install_requires = [
setup(
setup(
name="transformers",
name="transformers",
version="4.19.0.dev0",# expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
version="4.19.0.dev0",# expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Patrick von Platen, Sylvain Gugger, Suraj Patil, Stas Bekman, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors",
author="The Hugging Face team (past and future) with the help of all our contributors (https://github.com/huggingface/transformers/graphs/contributors)",
author_email="thomas@huggingface.co",
author_email="transformers@huggingface.co",
description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch",
description="State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow",