Skip to content

Commit 1a2f22c

Browse files
authored
Merge pull request #334 from mpsonntag/rdfcleanup
RDF converter cleanup
2 parents 6c9294e + 3ad35b4 commit 1a2f22c

File tree

5 files changed

+400
-224
lines changed

5 files changed

+400
-224
lines changed

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ include LICENSE
22
include README.rst
33
include odml/info.json
44
include odml/resources/section_subclasses.yaml
5+
include odml/resources/odml-ontology.ttl

odml/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import os
22
import json
33

4-
here = os.path.dirname(__file__)
4+
INSTALL_PATH = os.path.dirname(__file__)
55

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

99
VERSION = infodict["VERSION"]
File renamed without changes.

0 commit comments

Comments
 (0)