move ci files to .github directory

since this is where we host everything

closes #113
This commit is contained in:
William Ballenthin
2020-07-07 12:28:47 -06:00
parent 7b86a968d5
commit 22d0f94cea
5 changed files with 0 additions and 193 deletions

View File

@@ -0,0 +1,13 @@
from PyInstaller.utils.hooks import copy_metadata
# in order for viv-utils to use pkg_resources to fetch
# the installed version of vivisect,
# we need to instruct pyinstaller to embed this metadata.
#
# so we set the pyinstaller.spec/hookspath to reference
# the directory with this hook.
#
# this hook runs at analysis time and updates the embedded metadata.
#
# ref: https://github.com/pyinstaller/pyinstaller/issues/1713#issuecomment-162682084
datas = copy_metadata("vivisect")

BIN
.github/pyinstaller/logo.ico vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 137 KiB

BIN
.github/pyinstaller/logo.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

10
.github/tox.ini vendored Normal file
View File

@@ -0,0 +1,10 @@
[pycodestyle]
; E402: module level import not at top of file
; W503: line break before binary operator
; E231 missing whitespace after ',' (emitted by black)
; E203 whitespace before ':' (emitted by black)
ignore = E402,W503,E203,E231
max-line-length = 160
statistics = True
count = True
exclude = .*