-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into pyup-pin-requests-2.18.4
- Loading branch information
Showing
7 changed files
with
64 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,6 @@ __pycache__/ | |
# Directories | ||
docs/ | ||
xmls/ | ||
build/ | ||
|
||
config.ini |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[paths] | ||
# File name of list of sbid for generate XMLs | ||
sbidlistname = | ||
|
||
# Folder name for xml file output | ||
xmlfoldername = | ||
|
||
# XML file name output | ||
xmlfilename = | ||
|
||
# Concatenate folder and file - DO NOT CHANGE | ||
xmlout = ${paths:xmlfoldername}/${paths:xmlfilename} | ||
|
||
|
||
[books.scielo] | ||
# Host of SciELO Books website | ||
host = books.scielo.org | ||
|
||
|
||
[couchdb-books] | ||
# Host of CouchDB service | ||
host = | ||
|
||
# port number of service | ||
port = |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
22qtc | ||
36d | ||
4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# -*- mode: python -*- | ||
|
||
block_cipher = None | ||
|
||
|
||
a = Analysis(['onix.py'], | ||
pathex=['C:\\Users\\[user.name]]\\Documents\\onix-master\\onix'], | ||
binaries=[], | ||
datas=[('C:\\Users\\[user.name]]\\Envs\\onix-env\\Lib\\site-packages\\iso639\\*.*', 'iso639')], | ||
hiddenimports=[], | ||
hookspath=[], | ||
runtime_hooks=[], | ||
excludes=[], | ||
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='onix', | ||
debug=False, | ||
strip=False, | ||
upx=True, | ||
runtime_tmpdir=None, | ||
console=True ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
lxml | ||
iso-639 | ||
requests==2.18.4 | ||
lxml==4.1.1 | ||
iso-639==0.4.5 | ||
requests==2.18.4 | ||
PyInstaller==3.3 |