-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 962 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "comfy_model_download"
version = "0.5.1"
authors = [
{ name="Sergio Tejón", email="[email protected]" },
]
description = "A package to download AI models for ComfyUI from the internet or from private GCS buckets"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'google-cloud-storage',
'requests',
'tqdm',
'urllib3'
]
[project.urls]
Homepage = "https://github.com/freepik-company/comfy-model-download"
Issues = "https://https://github.com/freepik-company/comfy-model-download/issues"
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version_provider = "pep621"
update_changelog_on_bump = true
major_version_zero = true