diff --git a/.gitmodules b/.gitmodules index ef49103..dc35785 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "pythonsh"] path = pythonsh - url = git@github.com:coderofmattie/pythonsh.git + url = git@github.com:bitcathedrals/pythonsh.git diff --git a/Pipfile b/Pipfile index 1809978..024e15e 100644 --- a/Pipfile +++ b/Pipfile @@ -1,13 +1,18 @@ + [[source]] url = "https://pypi.python.org/simple" verify_ssl = true name = "pypi" [packages] -requests = "*" - +toml = {version = "*", index = "pypi"} +version-parser = {version = "*", index = "pypi"} +requests = {version = "~=2.31", index = "pypi"} [dev-packages] -build = "*" - +build = {version = "*", index = "pypi"} +ptpython = {version = "*", index = "pypi"} +pytest = {version = "*", index = "pypi"} +pipenv = {version = "*", index = "pypi"} +pip = {version = "*", index = "pypi"} [requires] -python_version = "3.10" +python_version = "3.12" diff --git a/python.paths b/python.paths index aa8e45f..bd5c174 100644 --- a/python.paths +++ b/python.paths @@ -1 +1,2 @@ -src/ \ No newline at end of file +src/ + diff --git a/python.sh b/python.sh index 15941f2..c9f611b 100644 --- a/python.sh +++ b/python.sh @@ -1,7 +1,10 @@ -PYTHON_VERSION="3.10:latest" +# pastepipe - python.sh +VERSION=0.2.1 -VIRTUAL_PREFIX="pastepipe" +PACKAGES="pastepipe" +SOURCE="src" -VERSION=0.2.0 +BUILD_NAME="pastepipe" +VIRTUAL_PREFIX='pastepipe' -EDITOR=nano +PYTHON_VERSION='3.12' diff --git a/pythonsh b/pythonsh index 42c2063..c32bb3e 160000 --- a/pythonsh +++ b/pythonsh @@ -1 +1 @@ -Subproject commit 42c2063a44c30bb4e6e72631aa9a3456b79d4da4 +Subproject commit c32bb3e68d5908f840e78a0946778c86f25e4a7b diff --git a/src/pastepipe/Pipfile b/src/pastepipe/Pipfile new file mode 100644 index 0000000..1746e95 --- /dev/null +++ b/src/pastepipe/Pipfile @@ -0,0 +1,4 @@ +[packages] +requests = "~=2.31" + +