Skip to content

Commit a3adec1

Browse files
committed
release 0.5.0
1 parent 4309f57 commit a3adec1

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ venv
1212
*tox
1313
*egg-info
1414
.projectile
15-
build
15+
build
16+
dist

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Change Log
22

3-
## 0.2.0
3+
## 0.5.0
44

55
- first release

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,11 @@ Matplotlib extension to Nxscli.
1212
## Features Planned
1313

1414
* Stream metadata as X-axis
15+
16+
## Instalation
17+
18+
Nxscli-mpl can be installed by running `pip install nxscli-mpl`.
19+
20+
To install latest development version, use:
21+
22+
`pip install git+https://github.com/railab/nxscli-mpl.git`

pyproject.toml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,34 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = "nxscli-mpl"
7-
version = "0.0.1"
7+
version = "0.5.0"
88
authors = [{name = "raiden00", email = "raiden00@railab.me"}]
99
description = "Nxscli Matplotlib extension"
10-
license = {file = "LICENSE"}
10+
license = {text = "Apache-2.0"}
11+
readme = "README.md"
1112
requires-python = ">=3.10"
12-
classifiers = ["License :: OSI Approved :: Apache Software License"]
1313
dependencies = [
14-
"nxscli @ git+https://github.com/railab/nxscli.git",
14+
"nxscli>=0.5.0",
1515
"matplotlib>=3.6",
1616
"click>=8.1"
1717
]
18+
classifiers = [
19+
"Development Status :: 4 - Beta",
20+
"Intended Audience :: Developers",
21+
"License :: OSI Approved :: Apache Software License",
22+
"Programming Language :: Python :: 3.10",
23+
"Programming Language :: Python :: 3.11",
24+
"Topic :: Software Development :: Embedded Systems",
25+
"Operating System :: OS Independent",
26+
]
27+
keywords = [
28+
"nuttx",
29+
"nxscli",
30+
]
31+
32+
[project.urls]
33+
Changelog = "https://github.com/railab/nxscli-mpl/blob/master/CHANGES.md"
34+
Homepage = "https://github.com/railab/nxscli-mpl"
1835

1936
[project.entry-points."nxscli.extensions"]
2037
plugins = "nxscli_mpl.ext_plugins"

0 commit comments

Comments
 (0)