diff --git a/README.md b/README.md index 2c1fbad..d5bd851 100644 --- a/README.md +++ b/README.md @@ -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+. diff --git a/poetry.lock b/poetry.lock index fe532bc..34f90ed 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3277,4 +3277,4 @@ type = ["pytest-mypy"] [metadata] lock-version = "2.1" python-versions = ">=3.9,<4.0,!=3.9.7" -content-hash = "a76c5ab5422ae01f3acd30e4d2264c5b05cb26123c03e18c9b60bdc8417232c8" +content-hash = "bbb177180b07c7955c411b82abdf5594017e66e64b9510a5987db61d4a9bf543" diff --git a/pyproject.toml b/pyproject.toml index 7be04ed..9bcc6dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "opensource@ni.com"}] +maintainers = [ + {name = "Mike Prosser", email = "mike.prosser@emerson.com"}, + {name = "Johann Scholtz", email = "johann.scholtz@emerson.com"}, +] 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]