From b26f611861e9006d7f8773408c6455abedc19bd2 Mon Sep 17 00:00:00 2001 From: PB2 Date: Sun, 8 Dec 2019 17:12:45 -0500 Subject: [PATCH] Add files via upload --- create_live_pypi.bat | 5 +++++ create_test_pypi.bat | 5 +++++ update_live_pypi.bat | 3 +++ 3 files changed, 13 insertions(+) create mode 100644 create_live_pypi.bat create mode 100644 create_test_pypi.bat create mode 100644 update_live_pypi.bat diff --git a/create_live_pypi.bat b/create_live_pypi.bat new file mode 100644 index 0000000..f66cc49 --- /dev/null +++ b/create_live_pypi.bat @@ -0,0 +1,5 @@ +python -m pip install --user --upgrade setuptools wheel +python setup.py sdist bdist_wheel +python -m pip install --user --upgrade twine +python -m twine upload dist/* +PAUSE \ No newline at end of file diff --git a/create_test_pypi.bat b/create_test_pypi.bat new file mode 100644 index 0000000..c1e06f6 --- /dev/null +++ b/create_test_pypi.bat @@ -0,0 +1,5 @@ +python -m pip install --user --upgrade setuptools wheel +python setup.py sdist bdist_wheel +python -m pip install --user --upgrade twine +python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* +PAUSE \ No newline at end of file diff --git a/update_live_pypi.bat b/update_live_pypi.bat new file mode 100644 index 0000000..ac8c0b8 --- /dev/null +++ b/update_live_pypi.bat @@ -0,0 +1,3 @@ +python setup.py sdist +python setup.py sdist upload +PAUSE \ No newline at end of file