-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from cmars/chore/packaging-fixes
Packaging fixes
- Loading branch information
Showing
16 changed files
with
30 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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. | ||
|
@@ -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="[email protected]"}] | ||
url="http://code.google.com/p/pystdf/" | ||
url="https://github.com/cmars/pystdf" | ||
dependencies = [ | ||
'numpy', | ||
'pandas', | ||
|
@@ -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" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.