Skip to content

Commit 2b3ab2e

Browse files
committed
Updating_library
1 parent 3ae7c92 commit 2b3ab2e

30 files changed

+28
-6
lines changed

.github/workflows/build.yml

100644100755
File mode changed.
File renamed without changes.

.github/workflows/release_pypi.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# SPDX-FileCopyrightText: 2017 Scott Shawcroft, written for Adafruit Industries
2+
#
3+
# SPDX-License-Identifier: MIT
4+
5+
name: PyPI Release Actions
6+
7+
on:
8+
release:
9+
types: [published]
10+
11+
jobs:
12+
upload-release-assets:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Run PyPI Release CI workflow
16+
uses: adafruit/workflows-circuitpython-libs/release-pypi@main
17+
with:
18+
pypi-username: ${{ secrets.pypi_username }}
19+
pypi-password: ${{ secrets.pypi_password }}

.gitignore

100644100755
File mode changed.

.pre-commit-config.yaml

100644100755
File mode changed.

.pylintrc

100644100755
File mode changed.

.readthedocs.yml

100644100755
File mode changed.

CODE_OF_CONDUCT.md

100644100755
File mode changed.

LICENSE

100644100755
File mode changed.

LICENSES/CC-BY-4.0.txt

100644100755
File mode changed.

LICENSES/MIT.txt

100644100755
File mode changed.

LICENSES/Unlicense.txt

100644100755
File mode changed.

README.rst

100644100755
File mode changed.

README.rst.license

100644100755
File mode changed.

candlesticks.py

100644100755
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class Candlestick:
5252
5353
**Quickstart: Importing and using Candlestick**
5454
55-
Here is one way of importing the `Candlestick` class so you can use it as
55+
Here is one way of importing the `Candlestick` class, so you can use it as
5656
the name ``my_candle``:
5757
5858
.. code-block:: python
@@ -66,7 +66,7 @@ class Candlestick:
6666
6767
my_candle = Candlestick(100, 60, 30, 80, 5)
6868
69-
Once you setup your display, you can now add ``my_candle`` to your display using:
69+
Once you set up your display, you can now add ``my_candle`` to your display using:
7070
7171
.. code-block:: python
7272

docs/_static/favicon.ico

100644100755
File mode changed.

docs/_static/favicon.ico.license

100644100755
File mode changed.

docs/api.rst

100644100755
File mode changed.

docs/api.rst.license

100644100755
File mode changed.

docs/candlestick.png

100644100755
File mode changed.

docs/candlestick.png.license

100644100755
File mode changed.

docs/conf.py

100644100755
File mode changed.

docs/examples.rst

100644100755
File mode changed.

docs/examples.rst.license

100644100755
File mode changed.

docs/index.rst

100644100755
File mode changed.

docs/index.rst.license

100644100755
File mode changed.

examples/candlesticks_simpletest.py

100644100755
File mode changed.

pyproject.toml

100644100755
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,20 @@ requires = [
1111

1212
[project]
1313
name = "circuitpython-Candlesticks"
14-
description = "CircuitPython library to draw Stock Market Candlesticks."
14+
description = "CandleSticks for CircuitPython"
1515
version = "0.0.0+auto.0"
1616
readme = "README.rst"
1717
authors = [
1818
{name = "Jose D. Montoya", email = "[email protected]"}
1919
]
20-
urls = {Homepage = "https://github.com/jposada202020/CircuitPython_Candlesticks"}
20+
urls = {Homepage = "https://github.com/jposada202020/CircuitPython_ArrowLine.git"}
2121
keywords = [
2222
"hardware",
2323
"micropython",
2424
"circuitpython",
25+
"stock",
26+
"market",
27+
"candlesticks"
2528
]
2629
license = {text = "MIT"}
2730
classifiers = [
@@ -35,7 +38,7 @@ classifiers = [
3538
dynamic = ["dependencies", "optional-dependencies"]
3639

3740
[tool.setuptools]
38-
py-modules = ["CircuitPython_Candlesticks"]
41+
py-modules = ["circuitpython_Candlesticks"]
3942

4043
[tool.setuptools.dynamic]
4144
dependencies = {file = ["requirements.txt"]}

requirements.txt

100644100755
File mode changed.

setup.py

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
keywords="adafruit blinka circuitpython micropython candlesticks stock market displayio",
5252
# You can just specify the packages manually here if your project is
5353
# simple. Or you can use find_packages().
54-
py_modules=["candlesticks"],
54+
py_modules=["circuitpython_Candlesticks"],
5555
)

0 commit comments

Comments
 (0)