Skip to content

Commit

Permalink
release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raiden00pl committed Feb 25, 2023
1 parent de8f445 commit 1d51889
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ venv
*tox
*egg-info
.projectile
build
build
dist
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Change Log

## 0.2.0
## 0.5.0

- first release
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,10 @@ Numpy extension to Nxscli.
* Save data to NumPy files (`.npy`)
* NumPy `numpy.memmap()` support

## Instalation

Nxscli-np can be installed by running `pip install nxscli-np`.

To install latest development version, use:

`pip install git+https://github.com/railab/nxscli-np.git`
25 changes: 21 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,34 @@ build-backend = 'setuptools.build_meta'

[project]
name = "nxscli_np"
version = "0.0.1"
version = "0.5.0"
authors = [{name = "raiden00", email = "[email protected]"}]
description = "Nxscli Numpy extension"
license = {file = "LICENSE"}
license = {text = "Apache-2.0"}
readme = "README.md"
requires-python = ">=3.10"
classifiers = ["License :: OSI Approved :: Apache Software License"]
dependencies = [
"nxscli @ git+https://github.com/railab/nxscli.git",
"nxscli>=0.5.0",
"numpy>=1.24.2",
"click>=8.1"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Embedded Systems",
"Operating System :: OS Independent",
]
keywords = [
"nuttx",
"nxscli",
]

[project.urls]
Changelog = "https://github.com/railab/nxscli-np/blob/master/CHANGES.md"
Homepage = "https://github.com/railab/nxscli-np"

[project.entry-points."nxscli.extensions"]
plugins = "nxscli_np.ext_plugins"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_nxsclinp.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import nxscli_np
import nxscli_np.ext_plugins
import nxscli_np.ext_commands
import nxscli_np.ext_plugins


def test_nxsclinp():
Expand Down

0 comments on commit 1d51889

Please sign in to comment.