Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
beem
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
beem
Commits
bd1b7da8
Commit
bd1b7da8
authored
6 years ago
by
Holger Nahrstaedt
Browse files
Options
Downloads
Patches
Plain Diff
Try to build exe with pyinstaller
parent
726a419a
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+0
-1
0 additions, 1 deletion
.gitignore
appveyor.yml
+3
-3
3 additions, 3 deletions
appveyor.yml
beempy-onedir.spec
+48
-0
48 additions, 0 deletions
beempy-onedir.spec
beempy.ico
+0
-0
0 additions, 0 deletions
beempy.ico
beempy.spec
+40
-0
40 additions, 0 deletions
beempy.spec
with
91 additions
and
4 deletions
.gitignore
+
0
−
1
View file @
bd1b7da8
...
...
@@ -31,7 +31,6 @@ var/
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
...
...
This diff is collapsed.
Click to expand it.
appveyor.yml
+
3
−
3
View file @
bd1b7da8
...
...
@@ -44,7 +44,7 @@ install:
-
conda info -a
-
conda install --yes conda-build setuptools pip pytest-pylint parameterized cryptography
-
conda install --yes pycryptodomex scrypt pyyaml pytest pytest-mock coverage mock appdirs
-
conda install --yes ecdsa requests future websocket-client pytz six Click events prettytable
-
conda install --yes ecdsa requests future websocket-client pytz six Click events prettytable
pyinstaller
# Upgrade to the latest version of pip to avoid it displaying warnings
...
...
@@ -65,8 +65,8 @@ test_script:
after_test
:
# If tests are successful, create binary packages for the project.
-
"
pip
install
wheel"
-
"
python
setup.py
bdist_wheel"
-
py
install
er beempy-onedir.spec
-
7z a beempy.zip %APPVEYOR_BUILD_FOLDER%\dist\beempy
#- "%CMD_IN_ENV% python setup.py bdist_wininst"
#- "%CMD_IN_ENV% python setup.py bdist_msi"
-
ps
:
"
ls
dist"
...
...
This diff is collapsed.
Click to expand it.
beempy-onedir.spec
0 → 100644
+
48
−
0
View file @
bd1b7da8
# -*- mode: python -*-
import
os
import
glob
import
platform
block_cipher
=
None
os_name
=
platform
.
system
()
binaries
=
[]
data_files
=
[]
a
=
Analysis
([
'
beem/cli.py
'
],
pathex
=
[
'
beem
'
],
binaries
=
binaries
,
datas
=
data_files
,
hiddenimports
=
[],
hookspath
=
[],
runtime_hooks
=
[],
excludes
=
[
'
matplotlib
'
,
'
scipy
'
,
'
pandas
'
,
'
numpy
'
,
'
PyQt5
'
,
'
tkinter
'
],
win_no_prefer_redirects
=
False
,
win_private_assemblies
=
False
,
cipher
=
block_cipher
)
pyz
=
PYZ
(
a
.
pure
,
a
.
zipped_data
,
cipher
=
block_cipher
)
exe
=
EXE
(
pyz
,
a
.
scripts
,
exclude_binaries
=
True
,
name
=
'
beempy
'
,
debug
=
False
,
strip
=
False
,
upx
=
False
,
console
=
True
,
icon
=
'
beempy.ico
'
,
)
coll
=
COLLECT
(
exe
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
name
=
'
beempy
'
,
strip
=
False
,
upx
=
False
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
beempy.ico
0 → 100644
+
0
−
0
View file @
bd1b7da8
17.3 KiB
This diff is collapsed.
Click to expand it.
beempy.spec
0 → 100644
+
40
−
0
View file @
bd1b7da8
# -*- mode: python -*-
import
os
import
glob
import
platform
block_cipher
=
None
os_name
=
platform
.
system
()
binaries
=
[]
data_files
=
[]
a
=
Analysis
([
'
beem/cli.py
'
],
pathex
=
[
'
beem
'
],
binaries
=
binaries
,
datas
=
data_files
,
hiddenimports
=
[],
hookspath
=
[],
runtime_hooks
=
[],
excludes
=
[
'
matplotlib
'
,
'
scipy
'
,
'
pandas
'
,
'
numpy
'
,
'
PyQt5
'
,
'
tkinter
'
],
win_no_prefer_redirects
=
False
,
win_private_assemblies
=
False
,
cipher
=
block_cipher
)
pyz
=
PYZ
(
a
.
pure
,
a
.
zipped_data
,
cipher
=
block_cipher
)
exe
=
EXE
(
pyz
,
a
.
scripts
,
a
.
binaries
,
a
.
zipfiles
,
a
.
datas
,
name
=
'
beempy
'
,
debug
=
False
,
strip
=
False
,
upx
=
False
,
runtime_tmpdir
=
None
,
console
=
True
,
icon
=
'
beempy.ico
'
,
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment