diff --git a/pyproject.toml b/pyproject.toml index df45446..8dfc930 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,10 +1,44 @@ [project] name = "pystdf4" -version = "0.1.1" +version = "0.1.2" +authors = [{ name = "YQZhu", email = "asa_choo@hotmail.com" }] description = "A Python library for reading and writing STDF4 files" +license = { file = "LICENSE" } readme = "README.md" + +keywords = [ + "engineering", + "electronics", + "automatic-test-equipment", + "ate", + "standard-test-data-format", + "stdf", +] requires-python = ">=3.8" dependencies = [] +classifiers = [ + "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.8", + "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 :: 3.14", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Topic :: Scientific/Engineering", + "Topic :: Scientific/Engineering :: Automatic test equipment (ATE)", + "Topic :: Software Development :: Libraries", +] + +[project.urls] +Homepage = "https://github.com/Asachoo/pystdf4" +Documentation = "https://github.com/Asachoo/pystdf4" +Source = "https://github.com/Asachoo/pystdf4" +Issues = "https://github.com/Asachoo/pystdf4/issues" + [tool.ruff] line-length = 140 @@ -21,7 +55,4 @@ docstring-code-format = true [dependency-groups] -dev = [ - "coveralls>=4.0.1", - "pytest>=8.3.5", -] +dev = ["coveralls>=4.0.1", "pytest>=8.3.5"] diff --git a/pystdf4/__init__.py b/pystdf4/__init__.py index ea0e861..6874d3e 100644 --- a/pystdf4/__init__.py +++ b/pystdf4/__init__.py @@ -1,4 +1,4 @@ from .IO.stdf4writer import Stdf4Writer -__version__ = "0.1.1" +__version__ = "0.1.2" __all__ = ["Stdf4Writer"]