-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deducer): support working without
extraPaths
- Loading branch information
Showing
11 changed files
with
67 additions
and
58 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
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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
.PHONY: all clean build package upload | ||
.PHONY: all clean build publish | ||
|
||
all: clean build package upload | ||
all: clean build publish | ||
|
||
clean: | ||
rm -rf dist | ||
|
||
build: | ||
python3 -m build | ||
|
||
check: | ||
python3 -m twine check dist/* | ||
poetry build | ||
|
||
publish: | ||
python3 -m twine upload dist/* | ||
poetry publish |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[project] | ||
name = 'pluto-base' | ||
version = '0.0.1' | ||
description = 'The Base Library for Pluto Programming Language.' | ||
readme = 'README.md' | ||
[tool.poetry] | ||
name = "pluto-base" | ||
version = "0.0.2" | ||
description = "The Base Library for Pluto Programming Language." | ||
authors = ["Jade Zheng <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
classifiers = [ | ||
'Development Status :: 1 - Planning', | ||
'Environment :: Console', | ||
|
@@ -17,6 +19,9 @@ classifiers = [ | |
'License :: OSI Approved :: Apache Software License', | ||
] | ||
|
||
[project.urls] | ||
[tool.poetry.urls] | ||
Homepage = "https://github.com/pluto-lang/pluto" | ||
Issues = "https://github.com/pluto-lang/pluto/issues" | ||
Issues = "https://github.com/pluto-lang/pluto/issues" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" |
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 |
---|---|---|
@@ -1,15 +1,12 @@ | ||
.PHONY: all clean build package upload | ||
.PHONY: all clean build publish | ||
|
||
all: clean build package upload | ||
all: clean build publish | ||
|
||
clean: | ||
rm -rf dist | ||
|
||
build: | ||
python3 -m build | ||
|
||
check: | ||
python3 -m twine check dist/* | ||
poetry build | ||
|
||
publish: | ||
python3 -m twine upload dist/* | ||
poetry publish |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
[build-system] | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[project] | ||
name = 'pluto-client' | ||
version = '0.0.1' | ||
description = 'The Client Library for Pluto Programming Language.' | ||
readme = 'README.md' | ||
[tool.poetry] | ||
name = "pluto-client" | ||
version = "0.0.3" | ||
description = "The Client Library for Pluto Programming Language." | ||
authors = ["Jade Zheng <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
classifiers = [ | ||
'Development Status :: 1 - Planning', | ||
'Environment :: Console', | ||
|
@@ -17,6 +19,10 @@ classifiers = [ | |
'License :: OSI Approved :: Apache Software License', | ||
] | ||
|
||
[project.urls] | ||
[tool.poetry.urls] | ||
Homepage = "https://github.com/pluto-lang/pluto" | ||
Issues = "https://github.com/pluto-lang/pluto/issues" | ||
Issues = "https://github.com/pluto-lang/pluto/issues" | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.10" | ||
pluto-base = "^0.0.2" |
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.