Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 20 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,20 @@
# nipanel-python
Source for the nipanel python package
# Table of Contents

- [Table of Contents](#table-of-contents)
- [About](#about)
- [Operating System Support](#operating-system-support)
- [Python Version Support](#python-version-support)

# About

`nipanel` is a Python package that provides support for creating and controlling measurement and visualization panels.

NI created and supports this package.

## Operating System Support

`nipanel` supports Windows and Linux operating systems.

## Python Version Support

`nipanel` supports CPython 3.9+.
2 changes: 1 addition & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 24 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
[project]
name = "nipanel"
version = "0.1.0-dev1"
description = "NI Panel Python API"
license = "MIT"
description = "NI Panel client for Python"
authors = [{name = "NI", email = "[email protected]"}]
maintainers = [
{name = "Mike Prosser", email = "[email protected]"},
{name = "Johann Scholtz", email = "[email protected]"},
]
readme = "README.md"
keywords = ["nipanel", "panels"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
requires-python = ">=3.9"
dynamic = ["dependencies"]

[project.urls]
Expand Down
Loading