setup.py 9.81 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
26
27
28
29
30
   for the post-release and run `make fix-copies` on the main branch as well.

2. Run Tests for Amazon Sagemaker. The documentation is located in `./tests/sagemaker/README.md`, otherwise @philschmid.

3. Unpin specific versions from setup.py that use a git install.

4. 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
31
   message: "Release: <RELEASE>" and push.
32

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

35
6. Add a tag in git to mark the release: "git tag v<RELEASE> -m 'Adds tag v<RELEASE> for PyPI'"
36
37
38
39
40
   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).

41
42
   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).
43
44
45
46

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

47
48
49
   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
50
51
   python setup.py bdist_wheel && python setup.py sdist

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

   twine upload dist/* -r pypitest
55
   (pypi suggests using twine as other methods upload files via plaintext.)
56
57
58
59
   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:
60
   pip install -i https://testpypi.python.org/pypi diffusers
61

Sayak Paul's avatar
Sayak Paul committed
62
63
64
65
   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

66
   Check you can run the following commands:
67
   python -c "from diffusers import __version__; print(__version__)"
Sayak Paul's avatar
Sayak Paul committed
68
69
   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')"
70
   python -c "from diffusers import *"
71

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

75
10. Prepare the release notes and publish them on GitHub once everything is looking hunky-dory.
76
77
78
79
80

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.
"""

81
import os
82
import re
83
import sys
84

Sayak Paul's avatar
Sayak Paul committed
85
from setuptools import Command, find_packages, setup
86

87

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

# this is a lookup table with items like:
#
136
# tokenizers: "huggingface-hub==0.8.0"
137
138
139
140
141
142
143
144
145
# 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; \
146
# print(" ".join([deps[x] for x in sys.argv[1:]]))' tokenizers datasets
147
148
149
150
151
152
153
154
#
# 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; \
155
# print(" ".join([deps[x] for x in sys.argv[1:]]))' tokenizers datasets)
156
157
158
159
160
161
162
163
164
#


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


class DepsTableUpdateCommand(Command):
    """
Sayak Paul's avatar
Sayak Paul committed
165
    A custom command that updates the dependency table.
166
167
168
169
170
171
    usage: python setup.py deps_table_update
    """

    description = "build runtime dependency table"
    user_options = [
        # format: (long option, short option, description).
172
173
174
175
176
        (
            "dep-table-update",
            None,
            "updates src/diffusers/dependency_versions_table.py",
        ),
177
178
179
180
181
182
183
184
185
186
187
188
189
    ]

    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",
190
            "# 2. run `make deps_table_update`",
191
192
193
194
195
196
197
198
199
200
201
            "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
202
extras = {}
203
extras["quality"] = deps_list("urllib3", "isort", "ruff", "hf-doc-builder")
204
extras["docs"] = deps_list("hf-doc-builder")
Dhruv Nair's avatar
Dhruv Nair committed
205
extras["training"] = deps_list("accelerate", "datasets", "protobuf", "tensorboard", "Jinja2", "peft")
206
extras["test"] = deps_list(
207
    "compel",
Dhruv Nair's avatar
Dhruv Nair committed
208
    "GitPython",
209
    "datasets",
Lucain's avatar
Lucain committed
210
    "Jinja2",
211
    "invisible-watermark",
212
    "k-diffusion",
213
    "librosa",
214
    "parameterized",
215
216
217
    "pytest",
    "pytest-timeout",
    "pytest-xdist",
218
    "requests-mock",
219
    "safetensors",
Suraj Patil's avatar
Suraj Patil committed
220
    "sentencepiece",
221
222
    "scipy",
    "torchvision",
223
    "transformers",
224
)
225
extras["torch"] = deps_list("torch", "accelerate")
226
227
228
229
230

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

232
extras["dev"] = (
233
    extras["quality"] + extras["test"] + extras["training"] + extras["docs"] + extras["torch"] + extras["flax"]
234
)
Patrick von Platen's avatar
Patrick von Platen committed
235

236
install_requires = [
Patrick von Platen's avatar
Patrick von Platen committed
237
    deps["importlib_metadata"],
238
239
240
    deps["filelock"],
    deps["huggingface-hub"],
    deps["numpy"],
Patrick von Platen's avatar
Patrick von Platen committed
241
    deps["regex"],
242
    deps["requests"],
243
    deps["safetensors"],
244
    deps["Pillow"],
Patrick von Platen's avatar
Patrick von Platen committed
245
246
]

247
248
version_range_max = max(sys.version_info[1], 10) + 1

Patrick von Platen's avatar
Patrick von Platen committed
249
250
setup(
    name="diffusers",
Sayak Paul's avatar
Sayak Paul committed
251
    version="0.28.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)
Sayak Paul's avatar
Sayak Paul committed
252
    description="State-of-the-art diffusion in PyTorch and JAX.",
Patrick von Platen's avatar
Patrick von Platen committed
253
254
    long_description=open("README.md", "r", encoding="utf-8").read(),
    long_description_content_type="text/markdown",
Sayak Paul's avatar
Sayak Paul committed
255
    keywords="deep learning diffusion jax pytorch stable diffusion audioldm",
256
257
    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)",
Patrick von Platen's avatar
Patrick von Platen committed
258
259
260
261
    author_email="patrick@huggingface.co",
    url="https://github.com/huggingface/diffusers",
    package_dir={"": "src"},
    packages=find_packages("src"),
262
    package_data={"diffusers": ["py.typed"]},
263
    include_package_data=True,
264
    python_requires=">=3.8.0",
265
    install_requires=list(install_requires),
Patrick von Platen's avatar
Patrick von Platen committed
266
    extras_require=extras,
267
    entry_points={"console_scripts": ["diffusers-cli=diffusers.commands.diffusers_cli:main"]},
Patrick von Platen's avatar
Patrick von Platen committed
268
269
270
271
272
273
274
275
    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",
276
277
        "Programming Language :: Python :: 3",
    ]
278
    + [f"Programming Language :: Python :: 3.{i}" for i in range(8, version_range_max)],
279
    cmdclass={"deps_table_update": DepsTableUpdateCommand},
Patrick von Platen's avatar
Patrick von Platen committed
280
)