-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (44 loc) · 1.28 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "civitai_models_manager"
authors = [
{name = "Regi E",email = "[email protected]"}
]
keywords = ["civitai", "model", "manager", "cli", "ai", "ml", "machine learning", "artificial intelligence"]
dynamic = ["version"]
description = "CLI tool for managing AI models from the CivitAI platform."
readme = "README.md"
requires-python = ">=3.9,<=3.13"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"typer",
"rich",
"httpx",
"shellingham",
"html2text",
"python-dotenv",
"questionary",
"ollama",
"openai",
"groq",
"tenacity",
"asyncio"
]
[tool.hatch.version]
path = "civitai_models_manager/__version__.py"
[tool.setuptools]
packages = ["civitai_models_manager"]
package-dir = {"" = "civitai_models_manager"}
[project.urls]
Repository = "https://github.com/regiellis/civitai-cli-manager"
Documentation = "https://github.com/regiellis/civitai-cli-manager/blob/main/README.md"
"Bug Tracker" = "https://github.com/regiellis/civitai-cli-manager/issues"
[project.scripts]
civitai-models = "civitai_models_manager.__main__:main"