Skip to content

Commit a31e7e0

Browse files
committed
Create odml.rdf
The files fuzzy_finder and query_creater deal with odml specific rdf. Conceptually they are best kept seperate from other convenience tools and parsers.
1 parent 9294b7e commit a31e7e0

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

odml/rdf/__init__.py

Whitespace-only changes.

odml/tools/fuzzy_finder.py renamed to odml/rdf/fuzzy_finder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from odml.tools.query_creator import QueryCreator, QueryParser, QueryParserFuzzy
1+
from .query_creator import QueryCreator, QueryParser, QueryParserFuzzy
22

33

44
class FuzzyFinder(object):
File renamed without changes.

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@
2121

2222
packages = [
2323
'odml',
24+
'odml.rdf',
25+
'odml.scripts',
2426
'odml.tools',
25-
'odml.tools.converters',
26-
'odml.scripts'
27+
'odml.tools.converters'
2728
]
2829

2930
with open('README.md') as f:

0 commit comments

Comments
 (0)