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
41 changes: 36 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"]
2 changes: 1 addition & 1 deletion pystdf4/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .IO.stdf4writer import Stdf4Writer

__version__ = "0.1.1"
__version__ = "0.1.2"
__all__ = ["Stdf4Writer"]
Loading