"git@developer.sourcefind.cn:zhaoyu6/sglang.git" did not exist on "fded67441d9ef12939cba8e41618dba9cff91749"
setup.py 9.19 KB
Newer Older
1
2
3
4
5
"""
Simple check list from AllenNLP repo: https://github.com/allenai/allennlp/blob/master/setup.py

To create the package for pypi.

6
7
8
1. Change the version in __init__.py, setup.py as well as docs/source/conf.py. Remove the master from the links in
   the new models of the README:
   (https://huggingface.co/transformers/master/model_doc/ -> https://huggingface.co/transformers/model_doc/)
sgugger's avatar
sgugger committed
9
   then run `make fix-copies` to fix the index of the documentation.
10

Sylvain Gugger's avatar
Sylvain Gugger committed
11
2. Unpin specific versions from setup.py that use a git install.
Lysandre's avatar
Lysandre committed
12

13
14
15
16
17
18
19
20
2. Commit these changes with the message: "Release: VERSION"

3. Add a tag in git to mark the release: "git tag VERSION -m'Adds tag VERSION for pypi' "
   Push the tag to git: git push --tags origin master

4. Build both the sources and the wheel. Do not change anything in setup.py between
   creating the wheel and the source distribution (obviously).

thomwolf's avatar
thomwolf committed
21
   For the wheel, run: "python setup.py bdist_wheel" in the top level directory.
22
   (this will build a wheel for the python version you use to build it).
23
24

   For the sources, run: "python setup.py sdist"
thomwolf's avatar
thomwolf committed
25
   You should now have a /dist directory with both .whl and .tar.gz source versions.
26
27
28
29
30

5. Check that everything looks correct by uploading the package to the pypi test server:

   twine upload dist/* -r pypitest
   (pypi suggest using twine as other methods upload files via plaintext.)
Lysandre's avatar
Lysandre committed
31
32
   You may have to specify the repository url, use the following command then:
   twine upload dist/* -r pypitest --repository-url=https://test.pypi.org/legacy/
33
34

   Check that you can install it in a virtualenv by running:
35
   pip install -i https://testpypi.python.org/pypi transformers
36
37
38
39
40
41

6. Upload the final version to actual pypi:
   twine upload dist/* -r pypi

7. Copy the release notes from RELEASE.md to the tag in github once everything is looking hunky-dory.

Lysandre's avatar
Lysandre committed
42
8. Add the release version to docs/source/_static/js/custom.js and .circleci/deploy.sh
43
44

9. Update README.md to redirect to correct documentation.
45
46

10. Update the version in __init__.py, setup.py to the new version "-dev" and push to master.
47
"""
Aymeric Augustin's avatar
Aymeric Augustin committed
48

Stas Bekman's avatar
Stas Bekman committed
49
import os
50
import re
51
import shutil
52
from distutils.core import Command
53
54
from pathlib import Path

thomwolf's avatar
thomwolf committed
55
56
from setuptools import find_packages, setup

57

58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Remove stale transformers.egg-info directory to avoid https://github.com/pypa/pip/issues/5466
stale_egg_info = Path(__file__).parent / "transformers.egg-info"
if stale_egg_info.exists():
    print(
        (
            "Warning: {} exists.\n\n"
            "If you recently updated transformers to 3.0 or later, this is expected,\n"
            "but it may prevent transformers from installing in editable mode.\n\n"
            "This directory is automatically generated by Python's packaging tools.\n"
            "I will remove it now.\n\n"
            "See https://github.com/pypa/pip/issues/5466 for details.\n"
        ).format(stale_egg_info)
    )
    shutil.rmtree(stale_egg_info)


74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# IMPORTANT:
# 1. all dependencies should be listed here with their version requirements if any
# 2. once modified, run: `make deps_table_update` to update src/transformers/dependency_versions_table.py
_deps = [
    "black>=20.8b1",
    "cookiecutter==1.7.2",
    "dataclasses",
    "datasets",
    "faiss-cpu",
    "fastapi",
    "filelock",
    "flake8>=3.8.3",
    "flax==0.2.2",
    "fugashi>=1.0",
    "ipadic>=1.0.0,<2.0",
    "isort>=5.5.4",
    "jax>=0.2.0",
    "jaxlib==0.1.55",
    "keras2onnx",
    "numpy",
Lysandre's avatar
Lysandre committed
94
    "onnxconverter-common",
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
    "onnxruntime-tools>=1.4.2",
    "onnxruntime>=1.4.0",
    "packaging",
    "parameterized",
    "protobuf",
    "psutil",
    "pydantic",
    "pytest",
    "pytest-xdist",
    "python>=3.6.0",
    "recommonmark",
    "regex!=2019.12.17",
    "requests",
    "sacremoses",
    "scikit-learn",
    "sentencepiece==0.1.91",
    "sphinx-copybutton",
    "sphinx-markdown-tables",
    "sphinx-rtd-theme==0.4.3",  # sphinx-rtd-theme==0.5.0 introduced big changes in the style.
    "sphinx==3.2.1",
    "starlette",
sgugger's avatar
sgugger committed
116
    "tensorflow-cpu>=2.0",
117
118
119
120
121
122
123
124
    "tensorflow>=2.0",
    "timeout-decorator",
    "tokenizers==0.9.4",
    "torch>=1.0",
    "tqdm>=4.27",
    "unidic>=1.0.2",
    "unidic_lite>=1.0.7",
    "uvicorn",
125
]
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167


# tokenizers: "tokenizers==0.9.4" lookup table
# support non-versions file too so that they can be checked at run time
deps = {b: a for a, b in (re.findall(r"^(([^!=<>]+)(?:[!=<>].*)?$)", x)[0] for x in _deps)}


def deps_list(*pkgs):
    return [deps[pkg] for pkg in pkgs]


class DepsTableUpdateCommand(Command):
    """
    A custom distutils command that updates the dependency table.
    usage: python setup.py deps_table_update
    """

    description = "build runtime dependency table"
    user_options = [
        # format: (long option, short option, description).
        ("dep-table-update", None, "updates src/transformers/dependency_versions_table.py"),
    ]

    def initialize_options(self):
        pass

    def finalize_options(self):
        pass

    def run(self):
        entries = "\n".join([f'    "{k}": "{v}",' for k, v in deps.items()])
        content = [
            "# THIS FILE HAS BEEN AUTOGENERATED. To update:",
            "# 1. modify the `_deps` dict in setup.py",
            "# 2. run `make deps_table_update``",
            "deps = {",
            entries,
            "}",
            ""
        ]
        target = "src/transformers/dependency_versions_table.py"
        print(f"updating {target}")
Julien Plu's avatar
Julien Plu committed
168
        with open(target, "w", encoding="utf-8", newline="\n") as f:
169
170
171
172
173
174
175
176
177
178
179
180
            f.write("\n".join(content))


extras = {}

extras["ja"] = deps_list("fugashi", "ipadic", "unidic_lite", "unidic")
extras["sklearn"] = deps_list("scikit-learn")

extras["tf"] = deps_list("tensorflow", "onnxconverter-common", "keras2onnx")
extras["tf-cpu"] = deps_list("tensorflow-cpu", "onnxconverter-common", "keras2onnx")

extras["torch"] = deps_list("torch")
Stas Bekman's avatar
Stas Bekman committed
181
182

if os.name == "nt":  # windows
183
184
    extras["retrieval"] = deps_list("datasets")  # faiss is not supported on windows
    extras["flax"] = []  # jax is not supported on windows
185
else:
186
187
    extras["retrieval"] = deps_list("faiss-cpu", "datasets")
    extras["flax"] = deps_list("jax", "jaxlib", "flax")
188

189
190
191
extras["tokenizers"] = deps_list("tokenizers")
extras["onnxruntime"] = deps_list("onnxruntime", "onnxruntime-tools")
extras["modelcreation"] = deps_list("cookiecutter")
192

193
extras["serving"] = deps_list("pydantic", "uvicorn", "fastapi", "starlette")
Stas Bekman's avatar
Stas Bekman committed
194

195
196
197
198
199
200
201
202
203
extras["sentencepiece"] = deps_list("sentencepiece", "protobuf")
extras["retrieval"] = deps_list("faiss-cpu", "datasets")
extras["testing"] = (
    deps_list("pytest", "pytest-xdist", "timeout-decorator", "parameterized", "psutil")
    + extras["retrieval"]
    + extras["modelcreation"]
)
extras["docs"] = deps_list("recommonmark", "sphinx", "sphinx-markdown-tables", "sphinx-rtd-theme", "sphinx-copybutton")
extras["quality"] = deps_list("black", "isort", "flake8")
Stas Bekman's avatar
Stas Bekman committed
204
205
206

extras["all"] = extras["tf"] + extras["torch"] + extras["flax"] + extras["sentencepiece"] + extras["tokenizers"]

207
208
209
210
211
212
213
214
215
extras["dev"] = (
    extras["all"]
    + extras["testing"]
    + extras["quality"]
    + extras["ja"]
    + extras["docs"]
    + extras["sklearn"]
    + extras["modelcreation"]
)
Stas Bekman's avatar
Stas Bekman committed
216

217

218
219
220
221
222
223
224
225
226
227
228
229
230
# when modifying the following list, make sure to update src/transformers/dependency_versions_check.py
install_requires = [
    deps["dataclasses"] + ";python_version<'3.7'",  # dataclasses for Python versions that don't have it
    deps["filelock"],   # filesystem locks, e.g., to prevent parallel downloads
    deps["numpy"],
    deps["packaging"],  # utilities from PyPA to e.g., compare versions
    deps["regex"],      # for OpenAI GPT
    deps["requests"],   # for downloading models over HTTPS
    deps["sacremoses"], # for XLM
    deps["tokenizers"],
    deps["tqdm"],       # progress bars in model download and training scripts
]

thomwolf's avatar
thomwolf committed
231
setup(
232
    name="transformers",
233
    version="4.1.0.dev0",
sgugger's avatar
sgugger committed
234
    author="Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Sam Shleifer, Patrick von Platen, Sylvain Gugger, Google AI Language Team Authors, Open AI team Authors, Facebook AI Authors, Carnegie Mellon University Authors",
thomwolf's avatar
thomwolf committed
235
    author_email="thomas@huggingface.co",
thomwolf's avatar
thomwolf committed
236
    description="State-of-the-art Natural Language Processing for TensorFlow 2.0 and PyTorch",
237
    long_description=open("README.md", "r", encoding="utf-8").read(),
thomwolf's avatar
thomwolf committed
238
    long_description_content_type="text/markdown",
239
240
    keywords="NLP deep learning transformer pytorch tensorflow BERT GPT GPT-2 google openai CMU",
    license="Apache",
241
    url="https://github.com/huggingface/transformers",
Aymeric Augustin's avatar
Aymeric Augustin committed
242
    package_dir={"": "src"},
243
    packages=find_packages("src"),
244
    extras_require=extras,
245
    entry_points={"console_scripts": ["transformers-cli=transformers.commands.transformers_cli:main"]},
246
    python_requires=">=3.6.0",
247
    install_requires=install_requires,
thomwolf's avatar
thomwolf committed
248
    classifiers=[
Aymeric Augustin's avatar
Aymeric Augustin committed
249
250
251
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "Intended Audience :: Education",
252
253
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: Apache Software License",
Aymeric Augustin's avatar
Aymeric Augustin committed
254
        "Operating System :: OS Independent",
255
        "Programming Language :: Python :: 3",
Aymeric Augustin's avatar
Aymeric Augustin committed
256
257
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7",
258
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
thomwolf's avatar
thomwolf committed
259
    ],
260
    cmdclass={"deps_table_update": DepsTableUpdateCommand},
thomwolf's avatar
thomwolf committed
261
)