-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
18272a4
commit b8d2033
Showing
5 changed files
with
59 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,29 +24,29 @@ venv = ".venv" | |
# Uncomment for Poetry support | ||
############################## | ||
|
||
# [build-system] | ||
# requires = ["poetry-core"] | ||
# build-backend = "poetry.core.masonry.api" | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
# [tool.poetry] | ||
# name = "template" | ||
# version = "0.1.0" | ||
# description = "" | ||
# authors = ["Hanwen Wu <[email protected]>"] | ||
# readme = "README.md" | ||
[tool.poetry] | ||
name = "template" | ||
version = "0.1.0" | ||
description = "" | ||
authors = ["Hanwen Wu <[email protected]>"] | ||
readme = "README.md" | ||
|
||
# packages = [{ include = "python", from = "src" }] | ||
packages = [{ include = "python", from = "src" }] | ||
|
||
# [tool.poetry.dependencies] | ||
# python = "^3.9" | ||
# substrate = "220240617.*" | ||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
substrate = "220240617.*" | ||
|
||
# [tool.poetry.group.dev.dependencies] | ||
# ruff = "^0.6.1" | ||
# marimo = "^0.8.0" | ||
[tool.poetry.group.dev.dependencies] | ||
ruff = "^0.6.1" | ||
marimo = "^0.8.0" | ||
|
||
# [tool.poetry.scripts] | ||
# main = "python.example:main" | ||
[tool.poetry.scripts] | ||
main = "python.example:main" | ||
|
||
|
||
########################### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,30 +25,30 @@ venv = ".venv" | |
# Uncomment for Poetry support | ||
############################## | ||
|
||
# [build-system] | ||
# requires = ["poetry-core"] | ||
# build-backend = "poetry.core.masonry.api" | ||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
# [tool.poetry] | ||
# name = "example-generate-text" | ||
# version = "0.1.0" | ||
# description = "" | ||
# authors = ["Ben Guo <[email protected]>"] | ||
# readme = "README.md" | ||
[tool.poetry] | ||
name = "example-generate-text" | ||
version = "0.1.0" | ||
description = "" | ||
authors = ["Ben Guo <[email protected]>"] | ||
readme = "README.md" | ||
|
||
# packages = [{ include = "generatetext", from = "src" }] | ||
packages = [{ include = "generatetext", from = "src" }] | ||
|
||
# [tool.poetry.dependencies] | ||
# python = "^3.9" | ||
# substrate = "220240617.*" | ||
[tool.poetry.dependencies] | ||
python = "^3.9" | ||
substrate = "220240617.*" | ||
|
||
# [tool.poetry.group.dev.dependencies] | ||
# ruff = "^0.6.1" | ||
# marimo = "^0.8.0" | ||
[tool.poetry.group.dev.dependencies] | ||
ruff = "^0.6.1" | ||
marimo = "^0.8.0" | ||
|
||
# [tool.poetry.scripts] | ||
# example = "generatetext.example:main" | ||
# example-multi = "generatetext.example_multi:main" | ||
[tool.poetry.scripts] | ||
example = "generatetext.example:main" | ||
example-multi = "generatetext.example_multi:main" | ||
|
||
########################### | ||
# Uncomment for Rye support | ||
|