From e99872089d0ddeb0672280bf5eacf72886e8b970 Mon Sep 17 00:00:00 2001 From: Caleb Grant Date: Wed, 31 Jul 2024 16:32:53 -0700 Subject: [PATCH] cleanup Signed-off-by: Caleb Grant --- .gitignore | 4 ++++ pyproject.toml | 2 +- run.sh | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index dce2ddc..a9599e8 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,7 @@ build/ docs/_build/ site/ tests/data/ +*.sqlite +*.xlsx +*.csv +*.sh diff --git a/pyproject.toml b/pyproject.toml index f6f18a7..f9f744d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ classifiers = [ "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", "Intended Audience :: Developers", - "Topic :: Database", + "Topic :: Crosstabulation", "Topic :: Software Development :: Libraries :: Python Modules", "License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)", ] diff --git a/run.sh b/run.sh index 6e88868..e4cd93e 100755 --- a/run.sh +++ b/run.sh @@ -1,5 +1,5 @@ #!/bin/bash osascript -e 'tell application "Microsoft Excel" to close (every workbook whose name is "test.xlsx") saving no' >> /dev/null \ -&& gsi-xtab -d -k -s -f tests/data/sample2.csv -o test.xlsx -r location_id sample_no sample_material labsample meas_basis -c cas_rn analyte analyte_name -v concentration units qualifiers \ +&& crosstab -d -k -s -f tests/data/sample2.csv -o test.xlsx -r location_id sample_no sample_material labsample meas_basis -c cas_rn analyte analyte_name -v concentration units qualifiers \ && open test.xlsx