Skip to content

Commit

Permalink
Minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Apr 5, 2019
1 parent 0e10714 commit 4bb143c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions game.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import sys
import argparse


if __name__ == "__main__":
'''
Any exceptions are printed to a bugreport.txt file
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pylint
tox
pytest
cx_freeze
cx_freeze
Binary file modified requirements.txt
Binary file not shown.
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
'''
from cx_Freeze import setup, Executable


setup(
name="jackit",
version="1.0",
Expand All @@ -18,9 +19,14 @@
"tests"
],
"packages": [
"requests",
"queue",
"idna"
"idna",
"cffi",
"cryptography",
"OpenSSL",
"urllib3",
"ssl",
"requests"
],
"include_files": [
("gen.dump", "lib/gen.dump"),
Expand Down

0 comments on commit 4bb143c

Please sign in to comment.