diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml old mode 100644 new mode 100755 diff --git a/.github/workflows/release.yml b/.github/workflows/release_gh.yml old mode 100644 new mode 100755 similarity index 100% rename from .github/workflows/release.yml rename to .github/workflows/release_gh.yml diff --git a/.github/workflows/release_pypi.yml b/.github/workflows/release_pypi.yml new file mode 100755 index 0000000..65775b7 --- /dev/null +++ b/.github/workflows/release_pypi.yml @@ -0,0 +1,19 @@ +# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries +# +# SPDX-License-Identifier: MIT + +name: PyPI Release Actions + +on: + release: + types: [published] + +jobs: + upload-release-assets: + runs-on: ubuntu-latest + steps: + - name: Run PyPI Release CI workflow + uses: adafruit/workflows-circuitpython-libs/release-pypi@main + with: + pypi-username: ${{ secrets.pypi_username }} + pypi-password: ${{ secrets.pypi_password }} diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml old mode 100644 new mode 100755 diff --git a/.pylintrc b/.pylintrc old mode 100644 new mode 100755 diff --git a/.readthedocs.yml b/.readthedocs.yml old mode 100644 new mode 100755 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md old mode 100644 new mode 100755 diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/LICENSES/CC-BY-4.0.txt b/LICENSES/CC-BY-4.0.txt old mode 100644 new mode 100755 diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt old mode 100644 new mode 100755 diff --git a/LICENSES/Unlicense.txt b/LICENSES/Unlicense.txt old mode 100644 new mode 100755 diff --git a/README.rst b/README.rst old mode 100644 new mode 100755 diff --git a/README.rst.license b/README.rst.license old mode 100644 new mode 100755 diff --git a/candlesticks.py b/candlesticks.py old mode 100644 new mode 100755 index 966104b..4151daf --- a/candlesticks.py +++ b/candlesticks.py @@ -52,7 +52,7 @@ class Candlestick: **Quickstart: Importing and using Candlestick** - Here is one way of importing the `Candlestick` class so you can use it as + Here is one way of importing the `Candlestick` class, so you can use it as the name ``my_candle``: .. code-block:: python @@ -66,7 +66,7 @@ class Candlestick: my_candle = Candlestick(100, 60, 30, 80, 5) - Once you setup your display, you can now add ``my_candle`` to your display using: + Once you set up your display, you can now add ``my_candle`` to your display using: .. code-block:: python diff --git a/docs/_static/favicon.ico b/docs/_static/favicon.ico old mode 100644 new mode 100755 diff --git a/docs/_static/favicon.ico.license b/docs/_static/favicon.ico.license old mode 100644 new mode 100755 diff --git a/docs/api.rst b/docs/api.rst old mode 100644 new mode 100755 diff --git a/docs/api.rst.license b/docs/api.rst.license old mode 100644 new mode 100755 diff --git a/docs/candlestick.png b/docs/candlestick.png old mode 100644 new mode 100755 diff --git a/docs/candlestick.png.license b/docs/candlestick.png.license old mode 100644 new mode 100755 diff --git a/docs/conf.py b/docs/conf.py old mode 100644 new mode 100755 diff --git a/docs/examples.rst b/docs/examples.rst old mode 100644 new mode 100755 diff --git a/docs/examples.rst.license b/docs/examples.rst.license old mode 100644 new mode 100755 diff --git a/docs/index.rst b/docs/index.rst old mode 100644 new mode 100755 diff --git a/docs/index.rst.license b/docs/index.rst.license old mode 100644 new mode 100755 diff --git a/examples/candlesticks_simpletest.py b/examples/candlesticks_simpletest.py old mode 100644 new mode 100755 diff --git a/pyproject.toml b/pyproject.toml old mode 100644 new mode 100755 index 834b80b..fd23cc0 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,17 +11,20 @@ requires = [ [project] name = "circuitpython-Candlesticks" -description = "CircuitPython library to draw Stock Market Candlesticks." +description = "CandleSticks for CircuitPython" version = "0.0.0+auto.0" readme = "README.rst" authors = [ {name = "Jose D. Montoya", email = "candlesticks@mailmeto.mozmail.com"} ] -urls = {Homepage = "https://github.com/jposada202020/CircuitPython_Candlesticks"} +urls = {Homepage = "https://github.com/jposada202020/CircuitPython_ArrowLine.git"} keywords = [ "hardware", "micropython", "circuitpython", + "stock", + "market", + "candlesticks" ] license = {text = "MIT"} classifiers = [ @@ -35,7 +38,7 @@ classifiers = [ dynamic = ["dependencies", "optional-dependencies"] [tool.setuptools] -py-modules = ["CircuitPython_Candlesticks"] +py-modules = ["circuitpython_Candlesticks"] [tool.setuptools.dynamic] dependencies = {file = ["requirements.txt"]} diff --git a/requirements.txt b/requirements.txt old mode 100644 new mode 100755 diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 index 29b3742..69dc3e0 --- a/setup.py +++ b/setup.py @@ -51,5 +51,5 @@ keywords="adafruit blinka circuitpython micropython candlesticks stock market displayio", # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). - py_modules=["candlesticks"], + py_modules=["circuitpython_Candlesticks"], )