This commit is contained in:
Argiris Deligiannidis 2024-02-01 22:10:28 +02:00
parent aa435fb5fe
commit 2967553bc8
5 changed files with 200 additions and 1 deletions

15
.drone.yml Normal file
View File

@ -0,0 +1,15 @@
kind: pipeline
type: docker
name: default
steps:
- name: build
image: git.argideli.com/quertex/docker-win-pyinstaller
pull: always
commands:
# add dependancies
- wine c:/python/python.exe -m pip install -r z:/drone/requirements.txt
# prepare output directory
- mkdir -p /drone/src/out/
# build
- wine c:/python/Scripts/pyinstaller.exe --onefile --name matomo-csv-util --distpath z:/drone/src/out z:/drone/src/main.py

View File

@ -1,2 +1,4 @@
# matomo-csv-util ## iNewsletter CSV Util
GUI utility to convert csv with multiple columns to iNewsletter .csv import
Needed columns= name, email

11
requirements.txt Normal file
View File

@ -0,0 +1,11 @@
altgraph==0.17.4
numpy==1.26.3
packaging==23.2
pandas==2.2.0
pyinstaller==6.3.0
pyinstaller-hooks-contrib==2024.0
PySimpleGUI==4.60.5
python-dateutil==2.8.2
pytz==2023.3.post1
six==1.16.0
tzdata==2023.4

BIN
src/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

171
src/main.py Normal file

File diff suppressed because one or more lines are too long