Skip to content

Commit 7f381f1

Browse files
committed
add pyinstaller spec and environment.yml
1 parent dbfcf76 commit 7f381f1

2 files changed

Lines changed: 82 additions & 0 deletions

File tree

environment.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: trcviewer
2+
channels:
3+
- conda-forge
4+
- defaults
5+
dependencies:
6+
- altgraph=0.17=py_0
7+
- ca-certificates=2020.12.8=haa95532_0
8+
- certifi=2020.12.5=py38haa95532_0
9+
- future=0.18.2=py38_1
10+
- icu=58.2=ha925a31_3
11+
- jpeg=9b=hb83a4c4_2
12+
- libblas=3.9.0=3_hd5c7e75_netlib
13+
- libcblas=3.9.0=3_hd5c7e75_netlib
14+
- liblapack=3.9.0=3_hd5c7e75_netlib
15+
- libpng=1.6.37=h2a8f88b_0
16+
- m2w64-gcc-libgfortran=5.3.0=6
17+
- m2w64-gcc-libs=5.3.0=7
18+
- m2w64-gcc-libs-core=5.3.0=7
19+
- m2w64-gmp=6.1.0=2
20+
- m2w64-libwinpthread-git=5.0.0.4634.697f757=2
21+
- macholib=1.14=py_1
22+
- msys2-conda-epoch=20160418=1
23+
- nomkl=1.0=h5ca1d4c_0
24+
- numpy=1.19.4=py38h0cc643e_1
25+
- openssl=1.1.1i=h2bbff1b_0
26+
- pandas=1.1.5=py38h4c96930_0
27+
- pefile=2019.4.18=py_0
28+
- pip=20.3.1=py38haa95532_0
29+
- pycryptodome=3.9.9=py38h2bbff1b_0
30+
- pyinstaller=3.6=py38h62dcd97_5
31+
- pyqt=5.9.2=py38ha925a31_4
32+
- pyqtgraph=0.11.0=py_0
33+
- python=3.8.5=h5fd99cc_1
34+
- python-dateutil=2.8.1=py_0
35+
- python_abi=3.8=1_cp38
36+
- pytz=2020.4=pyhd8ed1ab_0
37+
- pywin32=227=py38he774522_1
38+
- pywin32-ctypes=0.2.0=py38_1000
39+
- qt=5.9.7=vc14h73c81de_0
40+
- setuptools=51.0.0=py38haa95532_2
41+
- sip=4.19.13=py38ha925a31_0
42+
- six=1.15.0=pyh9f0ad1d_0
43+
- sqlite=3.33.0=h2a8f88b_0
44+
- vc=14.2=h21ff451_1
45+
- vs2015_runtime=14.27.29016=h5e58377_2
46+
- wheel=0.36.1=pyhd3eb1b0_0
47+
- wincertstore=0.2=py38_0
48+
- zlib=1.2.11=h62dcd97_4
49+
prefix: C:\Users\aspit\anaconda3\envs\trcviewer

trcviewer.spec

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['trcviewer.py'],
7+
pathex=['C:\\Users\\aspit\\Git\\MHDLab\\lecroyviewer'],
8+
binaries=[],
9+
datas=[],
10+
hiddenimports=[],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher,
17+
noarchive=False)
18+
pyz = PYZ(a.pure, a.zipped_data,
19+
cipher=block_cipher)
20+
exe = EXE(pyz,
21+
a.scripts,
22+
a.binaries,
23+
a.zipfiles,
24+
a.datas,
25+
[],
26+
name='trcviewer',
27+
debug=False,
28+
bootloader_ignore_signals=False,
29+
strip=False,
30+
upx=True,
31+
upx_exclude=[],
32+
runtime_tmpdir=None,
33+
console=False )

0 commit comments

Comments
 (0)