-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
pyproject.toml
53 lines (47 loc) · 2.35 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pystdf"
version = "1.3.4"
description = "Python module for working with STDF files"
readme = {content-type = "text/plain", text = """
PySTDF is a Python module that makes it easy to work with STDF (Teradyne"s Standard Test Data Format). STDF is a commonly used file format in semiconductor test -- automated test equipment (ATE) from such vendors as Teradyne, Verigy, LTX, Credence, and others support this format.
PySTDF provides event-based stream parsing of STDF version 4, along with indexers that can help you rearrange the data into a more useful tabular form, as well as generate missing summary records or new types of derivative records.
The parser architecture is very flexible and can easily be extended to support STDF version 3 as well as custom record types.
Potential applications of PySTDF include:
* Debugging a vendor"s STDF implementation
* Straight conversion to ASCII-readable form
* Repairing STDF files
* Developing an application that leverages STDF
- Conversion to tabular form for statistical analysis tools
- Loading data into a relational database
PySTDF is released under a GPL license. Applications developed with PySTDF can only be released with a GPL-compatible license. Commercial applications can purchase an alternate license agreement for closed-source distribution.
"""}
authors = [{name = "Casey Marshall", email="[email protected]"}]
url="https://github.com/cmars/pystdf"
dependencies = [
'numpy',
'pandas',
'openpyxl',
]
packages=["pystdf", "pystdf.scripts"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: Free for non-commercial use",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Intended Audience :: Manufacturing",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Pre-processors",
]
[project.scripts]
stdf_slice = "pystdf.scripts.stdf_slice:main"
rec_index = "pystdf.scripts.rec_index:main"
stdf2excel = "pystdf.scripts.stdf2excel:main"
stdf2text = "pystdf.scripts.stdf2text:main"
stdf2xml = "pystdf.scripts.stdf2xml:main"