-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from jonnor/pip-install-github-actions
Support installing with pip, and run tests with GitHub Actions
- Loading branch information
Showing
9 changed files
with
162 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Python package | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ["3.10"] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install OS dependencies | ||
run: | | ||
sudo apt-get install -yqq python-tk git | ||
- name: Install Python dependencies | ||
run: | | ||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | ||
if [ -f requirements.dev.txt ]; then pip install -r requirements.dev.txt; fi | ||
- name: Install as pip package | ||
run: | | ||
pip install ./ -v | ||
- name: Test installed package | ||
working-directory: examples/auto_test | ||
run: | | ||
python auto_test.py | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src", "include", "tools" ] | ||
|
||
[tool.hatch.build.targets.wheel.sources] | ||
"src" = "tinymaix/src" | ||
"include" = "tinymaix/include" | ||
"tools" = "tinymaix/tools" | ||
|
||
[project] | ||
name = "TinyMaix" | ||
readme = "README.md" | ||
requires-python = ">= 3.8" | ||
keywords = ["machine learning", "deep learning", "microcontroller", "embedded"] | ||
version = "0.0.1" | ||
|
||
dependencies = [ | ||
"keras<3.0.0", | ||
"pillow>=10.0.0", | ||
] | ||
|
||
classifiers = [ | ||
"License :: OSI Approved :: Apache Software License", | ||
] | ||
|
||
|
||
[project.urls] | ||
Homepage = "https://github.com/sipeed/TinyMaix" | ||
Documentation = "https://github.com/sipeed/TinyMaix" | ||
Repository = "https://github.com/sipeed/TinyMaix" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
tensorflow-cpu==2.14.1 | ||
numpy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters