Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Packaging fixes #46

Merged
merged 1 commit into from
Aug 19, 2023
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
7 changes: 4 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.pyc
*.swp
*.swo
build/
docs/build
.venv
/build/
/docs/build
/.venv
/dist
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ build-backend = "hatchling.build"

[project]
name = "pystdf"
version = "1.3.3"
long_description="""
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.
Expand All @@ -21,9 +22,9 @@ Potential applications of PySTDF include:
- 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="casey.marshall@gmail.com"}]
url="http://code.google.com/p/pystdf/"
url="https://github.com/cmars/pystdf"
dependencies = [
'numpy',
'pandas',
Expand All @@ -49,4 +50,4 @@ 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"
stdf2xml = "pystdf.scripts.stdf2xml:main"
302 changes: 0 additions & 302 deletions pystdf/explorer/MainFrame.py

This file was deleted.

4 changes: 0 additions & 4 deletions pystdf/explorer/README.StdfExplorer

This file was deleted.

41 changes: 0 additions & 41 deletions pystdf/explorer/StdfExplorer.pyw

This file was deleted.

Loading