Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
58d9836
[tools/rdfconverter] Add load_rdf_subclasses func
mpsonntag Nov 4, 2019
2b843a4
[tools/rdfconverter] Fix len as condition occurences
mpsonntag Nov 4, 2019
e83dafe
[tools/rdfconverter] Simplify if statements
mpsonntag Nov 4, 2019
90882a8
[tools/rdfconverter] Fix invalid-name occurences
mpsonntag Nov 4, 2019
5b15212
[tools/rdfconverter] Cleanup imports order
mpsonntag Nov 4, 2019
c9a5fd0
[tools/rdfwriter] Sanitize document check
mpsonntag Nov 4, 2019
b8d24c8
[tools/rdfwriter] Simplify conditionals
mpsonntag Nov 4, 2019
02f1678
[tools/rdfconverter] Cleanup line lengths
mpsonntag Nov 4, 2019
c5fd450
[tools/rdfconverter] Make method static
mpsonntag Nov 4, 2019
5470f13
[tools/rdfreader] Simplify for loops
mpsonntag Nov 4, 2019
9712434
[tools/rdfwriter] Add save_repo_node method
mpsonntag Nov 4, 2019
c5cdd74
[tools/rdfwriter] Use save_repo_node / cleanup
mpsonntag Nov 4, 2019
1ac592d
[tools/rdfwriter] Add save_odml_list method
mpsonntag Nov 4, 2019
29b1bc7
[tools/rdfwriter] Add save_odml_values method
mpsonntag Nov 4, 2019
9a615c0
[tools/rdfwriter] Refactor save element method
mpsonntag Nov 4, 2019
1408dcf
[tools/rdfwriter] Fix deprecated property use
mpsonntag Nov 4, 2019
d462155
[info] Install path as constant
mpsonntag Nov 4, 2019
bb77326
[tools/rdfconverter] Use install path
mpsonntag Nov 4, 2019
4df36af
[tools/rdfconverter] Add/update docstrings
mpsonntag Nov 4, 2019
7ce94b3
[tools/rdfconverter] Add finalize call
mpsonntag Nov 11, 2019
52eb531
[resources] Move odml ont file and export
mpsonntag Nov 12, 2019
123982e
[tools/rdfwriter] Add save_doc method
mpsonntag Nov 13, 2019
8172f9e
[tools/rdfwriter] Add save_sec method
mpsonntag Nov 13, 2019
7fa5dc3
[tools/rdfwriter] Add save_prop method
mpsonntag Nov 13, 2019
38429e4
[tools/rdfwriter] Refactor save_elem usage
mpsonntag Nov 13, 2019
3ad35b4
[tools/rdfwriter] Change save_odml_list signature
mpsonntag Nov 13, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ include LICENSE
include README.rst
include odml/info.json
include odml/resources/section_subclasses.yaml
include odml/resources/odml-ontology.ttl
4 changes: 2 additions & 2 deletions odml/info.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os
import json

here = os.path.dirname(__file__)
INSTALL_PATH = os.path.dirname(__file__)

with open(os.path.join(here, "info.json")) as infofile:
with open(os.path.join(INSTALL_PATH, "info.json")) as infofile:
infodict = json.load(infofile)

VERSION = infodict["VERSION"]
Expand Down
File renamed without changes.
Loading