Skip to content

Commit

Permalink
Merge pull request jposada202020#3 from jposada202020/updating_files
Browse files Browse the repository at this point in the history
Updating_library
  • Loading branch information
jposada202020 authored Feb 1, 2023
2 parents 3ae7c92 + 2b3ab2e commit 7989d0b
Show file tree
Hide file tree
Showing 30 changed files with 28 additions and 6 deletions.
Empty file modified .github/workflows/build.yml
100644 → 100755
Empty file.
File renamed without changes.
19 changes: 19 additions & 0 deletions .github/workflows/release_pypi.yml
Original file line number Diff line number Diff line change
@@ -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 }}
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified .pre-commit-config.yaml
100644 → 100755
Empty file.
Empty file modified .pylintrc
100644 → 100755
Empty file.
Empty file modified .readthedocs.yml
100644 → 100755
Empty file.
Empty file modified CODE_OF_CONDUCT.md
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified LICENSES/CC-BY-4.0.txt
100644 → 100755
Empty file.
Empty file modified LICENSES/MIT.txt
100644 → 100755
Empty file.
Empty file modified LICENSES/Unlicense.txt
100644 → 100755
Empty file.
Empty file modified README.rst
100644 → 100755
Empty file.
Empty file modified README.rst.license
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions candlesticks.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Empty file modified docs/_static/favicon.ico
100644 → 100755
Empty file.
Empty file modified docs/_static/favicon.ico.license
100644 → 100755
Empty file.
Empty file modified docs/api.rst
100644 → 100755
Empty file.
Empty file modified docs/api.rst.license
100644 → 100755
Empty file.
Empty file modified docs/candlestick.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified docs/candlestick.png.license
100644 → 100755
Empty file.
Empty file modified docs/conf.py
100644 → 100755
Empty file.
Empty file modified docs/examples.rst
100644 → 100755
Empty file.
Empty file modified docs/examples.rst.license
100644 → 100755
Empty file.
Empty file modified docs/index.rst
100644 → 100755
Empty file.
Empty file modified docs/index.rst.license
100644 → 100755
Empty file.
Empty file modified examples/candlesticks_simpletest.py
100644 → 100755
Empty file.
9 changes: 6 additions & 3 deletions pyproject.toml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"}
]
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 = [
Expand All @@ -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"]}
Expand Down
Empty file modified requirements.txt
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion setup.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
)

0 comments on commit 7989d0b

Please sign in to comment.