Skip to content

Commit

Permalink
Merge branch 'master' into pyup-pin-requests-2.18.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ednilson authored Nov 10, 2017
2 parents 5d85b10 + e63a96c commit 7422409
Show file tree
Hide file tree
Showing 7 changed files with 64 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ __pycache__/
# Directories
docs/
xmls/
build/

config.ini
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ Version: 3.0
http://www.editeur.org/12/About-Release-3.0/

# Badges
[![Updates](https://pyup.io/repos/github/scieloorg/onix/shield.svg)](https://pyup.io/repos/github/scieloorg/onix/)
[![Python 3](https://pyup.io/repos/github/scieloorg/onix/python-3-shield.svg)](https://pyup.io/repos/github/scieloorg/onix/)


# Requirements

- lxml==4.1.0
- lxml==4.1.1
- iso-639==0.4.5
- requests==2.18.4
25 changes: 25 additions & 0 deletions onix/dist/config.ini.template
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 added onix/dist/onix.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions onix/dist/sbid.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
22qtc
36d
4
29 changes: 29 additions & 0 deletions onix/onix.spec
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 )
7 changes: 4 additions & 3 deletions requirements.txt
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

0 comments on commit 7422409

Please sign in to comment.