Skip to content

Commit f506d23

Browse files
authored
Merge pull request #53 from brain-bican/docs
paths fixed
2 parents 71fa131 + 5703cda commit f506d23

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include resources/*
1+
include src/tdta/resources/*

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name="tdta",
11-
version="0.1.0.dev23",
11+
version="0.1.0.dev24",
1212
description="The aim of this project is to provide taxonomy development tools custom actions.",
1313
long_description=README,
1414
long_description_content_type="text/markdown",

src/tdta/documentation.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
from tdta.command_line_utils import runcmd
1111
from tdta.version_control import git_update_local
1212

13-
ANNOTATIONS_TEMPLATE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../resources/annotation_template.md")
14-
TAXONOMY_TEMPLATE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "../../resources/taxonomy_template.md")
13+
ANNOTATIONS_TEMPLATE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "./resources/annotation_template.md")
14+
TAXONOMY_TEMPLATE = os.path.join(os.path.dirname(os.path.realpath(__file__)), "./resources/taxonomy_template.md")
1515

1616

1717
def generate_documentation(sqlite_db: str, output_folder: str, project_config=None, git_push=True):
@@ -179,5 +179,4 @@ def read_jinja_template(template_path):
179179
"""
180180
with open(template_path, 'r') as file:
181181
template = Template(file.read(), trim_blocks=True)
182-
return template
183-
182+
return template
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)