Skip to content

Commit

Permalink
Add Pipy and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
truskovskiyk committed Apr 2, 2024
1 parent 613a30e commit feb36c3
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
build-release:
rm -rf dist
rm -rf build
poetry build
twine upload --repository pypi dist/*
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,3 +255,15 @@ If you would like to contribute to this project, we recommend following the "for
5. Submit a **Pull request** so that we can review your changes

NOTE: Be sure to merge the latest from "upstream" before making a pull request!


## Releasing


To manually release a PyPI package, please run:

```shell
make build-release
```

Note: Make sure you have pypi token for this [pipy repo](https://pypi.org/project/llm-toolkit/).
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[tool.poetry]
name = "llm-finetuning-hub"
name = "llm-toolkit"
version = "0.1.0"
description = "LLM Finetuning resource hub + toolkit"
authors = ["Benjamin Ye <benjamin.ye@georgian.io>"]
license = "Apache 2.0"
readme = "README.md"
packages = [{include = "llm_finetuning_hub"}]
packages = [{include = "llmtune"}]

[tool.poetry.dependencies]
python = ">=3.9, <=3.12"
Expand Down Expand Up @@ -44,6 +44,7 @@ shellingham = "^1.5.4"

[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
twine = "^5.0.0"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit feb36c3

Please sign in to comment.