setup.py 12.7 KB
Newer Older
1
# Copyright 2024 The HuggingFace Team. All rights reserved.
Patrick von Platen's avatar
Patrick von Platen committed
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

15
16
17
"""
Simple check list from AllenNLP repo: https://github.com/allenai/allennlp/blob/main/setup.py

18
To create the package for PyPI.
19
20
21
22

1. Run `make pre-release` (or `make pre-patch` for a patch release) then run `make fix-copies` to fix the index of the
   documentation.

23
   If releasing on a special branch, copy the updated README.md on the main branch for the commit you will make
24
25
   for the post-release and run `make fix-copies` on the main branch as well.

26
2. Unpin specific versions from setup.py that use a git install.
27

28
3. Checkout the release branch (v<RELEASE>-release, for example v4.19-release), and commit these changes with the
Patrick von Platen's avatar
Patrick von Platen committed
29
   message: "Release: <RELEASE>" and push.
30

31
32
33
4. Manually trigger the "Nightly and release tests on main/release branch" workflow from the release branch. Wait for
   the tests to complete. We can safely ignore the known test failures.

34
5. Wait for the tests on main to be completed and be green (otherwise revert and fix bugs).
35

36
6. Add a tag in git to mark the release: "git tag v<RELEASE> -m 'Adds tag v<RELEASE> for PyPI'"
37
38
39
40
41
   Push the tag to git: git push --tags origin v<RELEASE>-release

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

42
43
   For the wheel, run: "python setup.py bdist_wheel" in the top level directory
   (This will build a wheel for the Python version you use to build it).
44
45
46
47

   For the sources, run: "python setup.py sdist"
   You should now have a /dist directory with both .whl and .tar.gz source versions.

48
49
50
   Long story cut short, you need to run both before you can upload the distribution to the
   test PyPI and the actual PyPI servers:

Sayak Paul's avatar
Sayak Paul committed
51
52
   python setup.py bdist_wheel && python setup.py sdist

53
8. Check that everything looks correct by uploading the package to the PyPI test server:
54
55

   twine upload dist/* -r pypitest
56
   (pypi suggests using twine as other methods upload files via plaintext.)
57
58
59
60
   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/

   Check that you can install it in a virtualenv by running:
61
   pip install -i https://testpypi.python.org/pypi diffusers
62

Sayak Paul's avatar
Sayak Paul committed
63
64
65
66
   If you are testing from a Colab Notebook, for instance, then do:
   pip install diffusers && pip uninstall diffusers
   pip install -i https://testpypi.python.org/pypi diffusers

67
   Check you can run the following commands:
68
   python -c "from diffusers import __version__; print(__version__)"
Sayak Paul's avatar
Sayak Paul committed
69
70
   python -c "from diffusers import DiffusionPipeline; pipe = DiffusionPipeline.from_pretrained('fusing/unet-ldm-dummy-update'); pipe()"
   python -c "from diffusers import DiffusionPipeline; pipe = DiffusionPipeline.from_pretrained('hf-internal-testing/tiny-stable-diffusion-pipe', safety_checker=None); pipe('ah suh du')"
71
   python -c "from diffusers import *"
72

73
9. Upload the final version to the actual PyPI:
74
75
   twine upload dist/* -r pypi

76
77
78
79
80
10. Prepare the release notes and publish them on GitHub once everything is looking hunky-dory. You can use the following
    Space to fetch all the commits applicable for the release: https://huggingface.co/spaces/lysandre/github-release. Repo should
    be `huggingface/diffusers`. `tag` should be the previous release tag (v0.26.1, for example), and `branch` should be
    the latest release branch (v0.27.0-release, for example). It denotes all commits that have happened on branch
    v0.27.0-release after the tag v0.26.1 was created.
81
82
83
84
85

11. Run `make post-release` (or, for a patch release, `make post-patch`). If you were on a branch for the release,
    you need to go back to main before executing this.
"""

86
import os
87
import re
88
import sys
lijian6's avatar
lijian6 committed
89
import subprocess
90

Sayak Paul's avatar
Sayak Paul committed
91
from setuptools import Command, find_packages, setup
lijian6's avatar
lijian6 committed
92
93
from typing import Optional, Union
from pathlib import Path
94

95
96
97
98
# 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/diffusers/dependency_versions_table.py
_deps = [
99
    "Pillow",  # keep the PIL.Image.Resampling deprecation away
100
    "accelerate>=0.29.3",
101
    "compel==0.1.8",
Anton Lozhkov's avatar
Anton Lozhkov committed
102
    "datasets",
103
    "filelock",
104
    "flax>=0.4.1",
Anton Lozhkov's avatar
Anton Lozhkov committed
105
    "hf-doc-builder>=0.3.0",
106
    "huggingface-hub>=0.23.2",
107
    "requests-mock==1.10.0",
Patrick von Platen's avatar
Patrick von Platen committed
108
    "importlib_metadata",
109
    "invisible-watermark>=0.2.0",
110
    "isort>=5.5.4",
111
112
    "jax>=0.4.1",
    "jaxlib>=0.4.1",
Lucain's avatar
Lucain committed
113
    "Jinja2",
114
    "k-diffusion>=0.0.12",
115
116
    "torchsde",
    "note_seq",
117
    "librosa",
118
    "numpy",
119
    "parameterized",
Patrick von Platen's avatar
Patrick von Platen committed
120
    "peft>=0.6.0",
121
    "protobuf>=3.20.3,<4",
122
    "pytest",
123
124
    "pytest-timeout",
    "pytest-xdist",
125
    "python>=3.8.0",
Dhruv Nair's avatar
Dhruv Nair committed
126
    "ruff==0.1.5",
127
    "safetensors>=0.3.1",
Suraj Patil's avatar
Suraj Patil committed
128
    "sentencepiece>=0.1.91,!=0.1.92",
Dhruv Nair's avatar
Dhruv Nair committed
129
    "GitPython<3.1.19",
130
    "scipy",
131
    "onnx",
Patrick von Platen's avatar
Patrick von Platen committed
132
    "regex!=2019.12.17",
133
    "requests",
134
    "tensorboard",
135
136
    "torch>=1.4",
    "torchvision",
137
    "transformers>=4.25.1",
138
    "urllib3<=2.0.0",
139
    "black",
140
141
142
143
]

# this is a lookup table with items like:
#
144
# tokenizers: "huggingface-hub==0.8.0"
145
146
147
148
149
150
151
152
153
# packaging: "packaging"
#
# some of the values are versioned whereas others aren't.
deps = {b: a for a, b in (re.findall(r"^(([^!=<>~]+)(?:[!=<>~].*)?$)", x)[0] for x in _deps)}

# since we save this data in src/diffusers/dependency_versions_table.py it can be easily accessed from
# anywhere. If you need to quickly access the data from this table in a shell, you can do so easily with:
#
# python -c 'import sys; from diffusers.dependency_versions_table import deps; \
154
# print(" ".join([deps[x] for x in sys.argv[1:]]))' tokenizers datasets
155
156
157
158
159
160
161
162
#
# Just pass the desired package names to that script as it's shown with 2 packages above.
#
# If diffusers is not yet installed and the work is done from the cloned repo remember to add `PYTHONPATH=src` to the script above
#
# You can then feed this for example to `pip`:
#
# pip install -U $(python -c 'import sys; from diffusers.dependency_versions_table import deps; \
163
# print(" ".join([deps[x] for x in sys.argv[1:]]))' tokenizers datasets)
164
165
166
167
168
169
170
171
172
#


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


class DepsTableUpdateCommand(Command):
    """
Sayak Paul's avatar
Sayak Paul committed
173
    A custom command that updates the dependency table.
174
175
176
177
178
179
    usage: python setup.py deps_table_update
    """

    description = "build runtime dependency table"
    user_options = [
        # format: (long option, short option, description).
180
181
182
183
184
        (
            "dep-table-update",
            None,
            "updates src/diffusers/dependency_versions_table.py",
        ),
185
186
187
188
189
190
191
192
193
194
195
196
197
    ]

    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",
198
            "# 2. run `make deps_table_update`",
199
200
201
202
203
204
205
206
207
208
209
            "deps = {",
            entries,
            "}",
            "",
        ]
        target = "src/diffusers/dependency_versions_table.py"
        print(f"updating {target}")
        with open(target, "w", encoding="utf-8", newline="\n") as f:
            f.write("\n".join(content))


Patrick von Platen's avatar
Patrick von Platen committed
210
extras = {}
211
extras["quality"] = deps_list("urllib3", "isort", "ruff", "hf-doc-builder")
212
extras["docs"] = deps_list("hf-doc-builder")
Dhruv Nair's avatar
Dhruv Nair committed
213
extras["training"] = deps_list("accelerate", "datasets", "protobuf", "tensorboard", "Jinja2", "peft")
214
extras["test"] = deps_list(
215
    "compel",
Dhruv Nair's avatar
Dhruv Nair committed
216
    "GitPython",
217
    "datasets",
Lucain's avatar
Lucain committed
218
    "Jinja2",
219
    "invisible-watermark",
220
    "k-diffusion",
221
    "librosa",
222
    "parameterized",
223
224
225
    "pytest",
    "pytest-timeout",
    "pytest-xdist",
226
    "requests-mock",
227
    "safetensors",
Suraj Patil's avatar
Suraj Patil committed
228
    "sentencepiece",
229
230
    "scipy",
    "torchvision",
231
    "transformers",
232
)
233
extras["torch"] = deps_list("torch", "accelerate")
234
235
236
237
238

if os.name == "nt":  # windows
    extras["flax"] = []  # jax is not supported on windows
else:
    extras["flax"] = deps_list("jax", "jaxlib", "flax")
239

240
extras["dev"] = (
241
    extras["quality"] + extras["test"] + extras["training"] + extras["docs"] + extras["torch"] + extras["flax"]
242
)
Patrick von Platen's avatar
Patrick von Platen committed
243

244
install_requires = [
Patrick von Platen's avatar
Patrick von Platen committed
245
    deps["importlib_metadata"],
246
247
248
    deps["filelock"],
    deps["huggingface-hub"],
    deps["numpy"],
Patrick von Platen's avatar
Patrick von Platen committed
249
    deps["regex"],
250
    deps["requests"],
251
    deps["safetensors"],
252
    deps["Pillow"],
Patrick von Platen's avatar
Patrick von Platen committed
253
254
]

255
256
version_range_max = max(sys.version_info[1], 10) + 1

lijian6's avatar
lijian6 committed
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
#def get_sha(root_dir: Union[str, Path]) -> str:
#    try:
#        return subprocess.check_output(['git', 'rev-parse', 'HEAD'], cwd=root_dir).decode('ascii').strip()
#    except Exception:
#        return 'Unknown'
#
#def get_abi():
#    try:
#        command = "echo '#include <string>' | gcc -x c++ -E -dM - | fgrep _GLIBCXX_USE_CXX11_ABI"
#        result = subprocess.run(command, shell=True, capture_output=True, text=True)
#        output = result.stdout.strip()
#        abi = "abi" + output.split(" ")[-1]
#        return abi
#    except Exception:
#        return 'abiUnknown'
lijian6's avatar
lijian6 committed
272
273
274

def get_version_add(sha: Optional[str] = None) -> str:
    version=''
lijian6's avatar
lijian6 committed
275
276
    root_dir = os.path.dirname(os.path.abspath(__file__))
    add_version_path = os.path.join(root_dir, "DIFFUSERS_VERSION_NUMBER")
lijian6's avatar
lijian6 committed
277
278
279
280
    #if sha != 'Unknown':
    #    if sha is None:
    #        sha = get_sha(root_dir)
    #    version = 'git' + sha[:7]
lijian6's avatar
lijian6 committed
281

lijian6's avatar
lijian6 committed
282
283
    ## abi
    #version += "." + get_abi()
lijian6's avatar
lijian6 committed
284
285
286
287
288
289
290

    # dtk version
    if os.getenv("ROCM_PATH"):
        rocm_path = os.getenv('ROCM_PATH', "")
        rocm_version_path = os.path.join(rocm_path, '.info', "rocm_version")
        with open(rocm_version_path, 'r',encoding='utf-8') as file:
            lines = file.readlines()
lijian6's avatar
lijian6 committed
291
        rocm_version=lines[0].replace(".", "")
lijian6's avatar
lijian6 committed
292
        version += "dtk" + rocm_version
lijian6's avatar
lijian6 committed
293
294
295
296

    lines=[]
    with open(add_version_path, 'r',encoding='utf-8') as file:
        lines = file.readlines()
lijian6's avatar
lijian6 committed
297
    lines[0] = "__dcu_version__ = '0.29.0+das.opt1.{}'\n".format(version)
lijian6's avatar
lijian6 committed
298
299
300
301
    with open(add_version_path, encoding="utf-8",mode="w") as file:
        file.writelines(lines)
    file.close()

lijian6's avatar
lijian6 committed
302
    init_path=os.path.join(root_dir, "src/diffusers/__init__.py")
lijian6's avatar
lijian6 committed
303
304
    with open(init_path, 'r',encoding='utf-8') as file:
        lines = file.readlines()
lijian6's avatar
lijian6 committed
305
    lines[1] = "__dcu_version__ = '0.29.0+das.opt1.{}'\n".format(version)
lijian6's avatar
lijian6 committed
306
    lines[818] = "        extra_objects={\"__version__\": __version__, \"__dcu_version__\": __dcu_version__},\n"
lijian6's avatar
lijian6 committed
307
308
309
310
311
312
    with open(init_path, encoding="utf-8",mode="w") as file:
        file.writelines(lines)
    file.close()

def get_version():
    get_version_add()
lijian6's avatar
lijian6 committed
313
314
    root_dir = os.path.dirname(os.path.abspath(__file__))
    version_file = os.path.join(root_dir, "DIFFUSERS_VERSION_NUMBER")
lijian6's avatar
lijian6 committed
315
316
317
318
    with open(version_file, encoding='utf-8') as f:
        exec(compile(f.read(), version_file, 'exec'))
    return locals()['__dcu_version__']

Patrick von Platen's avatar
Patrick von Platen committed
319
320
setup(
    name="diffusers",
lijian6's avatar
lijian6 committed
321
    version=get_version(),  # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
Sayak Paul's avatar
Sayak Paul committed
322
    description="State-of-the-art diffusion in PyTorch and JAX.",
lijian6's avatar
lijian6 committed
323
    long_description=open("README_ORIGIN.md", "r", encoding="utf-8").read(),
Patrick von Platen's avatar
Patrick von Platen committed
324
    long_description_content_type="text/markdown",
Sayak Paul's avatar
Sayak Paul committed
325
    keywords="deep learning diffusion jax pytorch stable diffusion audioldm",
326
327
    license="Apache 2.0 License",
    author="The Hugging Face team (past and future) with the help of all our contributors (https://github.com/huggingface/diffusers/graphs/contributors)",
Sayak Paul's avatar
Sayak Paul committed
328
    author_email="diffusers@huggingface.co",
Patrick von Platen's avatar
Patrick von Platen committed
329
330
331
    url="https://github.com/huggingface/diffusers",
    package_dir={"": "src"},
    packages=find_packages("src"),
332
    package_data={"diffusers": ["py.typed"]},
333
    include_package_data=True,
334
    python_requires=">=3.8.0",
335
    install_requires=list(install_requires),
Patrick von Platen's avatar
Patrick von Platen committed
336
    extras_require=extras,
337
    entry_points={"console_scripts": ["diffusers-cli=diffusers.commands.diffusers_cli:main"]},
Patrick von Platen's avatar
Patrick von Platen committed
338
339
340
341
342
343
344
345
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "Intended Audience :: Education",
        "Intended Audience :: Science/Research",
        "License :: OSI Approved :: Apache Software License",
        "Operating System :: OS Independent",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
346
347
        "Programming Language :: Python :: 3",
    ]
348
    + [f"Programming Language :: Python :: 3.{i}" for i in range(8, version_range_max)],
349
    cmdclass={"deps_table_update": DepsTableUpdateCommand},
Patrick von Platen's avatar
Patrick von Platen committed
350
)