Skip to content

Commit 0911f16

Browse files
using cogkit
1 parent 6c77619 commit 0911f16

File tree

115 files changed

+133
-137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+133
-137
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ Temporary Items
241241

242242
# End of https://www.toptal.com/developers/gitignore/api/macos
243243

244-
src/cogmodels/_version.py
244+
src/cogkit/_version.py
245245
tmp/
246246

247247
**/*.safetensor

README.md

Lines changed: 5 additions & 9 deletions

docker/dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ RUN apt-get update && \
1111
&& rm -rf /var/lib/apt/lists/*
1212

1313

14-
###### install cogmodels ######
15-
REPO_NAME=cogmodels
14+
###### install cogkit ######
15+
REPO_NAME=cogkit
1616
WORKDIR /app
1717

1818
# refactor url later (and maybe repo name)

docs/02-Installation.md

Lines changed: 2 additions & 2 deletions

docs/03-Inference/01-CLI.md

Lines changed: 10 additions & 10 deletions

docs/04-Finetune/02-Quick Start.md

Lines changed: 1 addition & 1 deletion

docs/04-Finetune/03-Data Format.md

Lines changed: 2 additions & 2 deletions

hatch.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ extra-dependencies = ['mypy>=1.0.0']
1717

1818

1919
[envs.types.scripts]
20-
check = 'mypy --install-types --non-interactive {args:src/cogmodels tests}'
20+
check = 'mypy --install-types --non-interactive {args:src/cogkit tests}'

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'hatchling.build'
44

55

66
[project]
7-
name = 'cogmodels'
7+
name = 'cogkit'
88
dynamic = ['version']
99
description = ''
1010
readme = 'README.md'
@@ -47,13 +47,13 @@ video = ["decord~=0.6.0", "opencv-python-headless~=4.11"]
4747

4848
[project.scripts]
4949
# FIXME: change name to cogkit
50-
cogkit = "cogmodels.cli:cli"
50+
cogkit = "cogkit.cli:cli"
5151

5252
[project.urls]
5353
# TODO: adds project urls
54-
# Documentation = 'https://github.com/Chenhui Zhang/cogmodels#readme'
55-
# Issues = 'https://github.com/Chenhui Zhang/cogmodels/issues'
56-
# Source = 'https://github.com/Chenhui Zhang/cogmodels'
54+
# Documentation = 'https://github.com/Chenhui Zhang/cogkit#readme'
55+
# Issues = 'https://github.com/Chenhui Zhang/cogkit/issues'
56+
# Source = 'https://github.com/Chenhui Zhang/cogkit'
5757

5858

5959
[tool.hatch.version]
@@ -66,7 +66,7 @@ local_scheme = 'no-local-version'
6666

6767

6868
[tool.hatch.build.hooks.vcs]
69-
version-file = 'src/cogmodels/_version.py'
69+
version-file = 'src/cogkit/_version.py'
7070

7171

7272
[tool.hatch.metadata]

ruff_defaults.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ select = [
550550
ban-relative-imports = "all"
551551

552552
[lint.isort]
553-
known-first-party = ["cogmodels"]
553+
known-first-party = ["cogkit"]
554554

555555
[lint.flake8-pytest-style]
556556
fixture-parentheses = false

0 commit comments

Comments
 (0)