Skip to content

Commit

Permalink
fix(setup): fix path to __version__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Sep 11, 2021
1 parent b76db29 commit 7da881d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-

"""incendium API."""
"""incendium."""

import os
from codecs import open
Expand All @@ -11,7 +11,7 @@
here = os.path.abspath(os.path.dirname(__file__))

about = {}
with open(os.path.join(here, "src", "system", "__version__.py"), "r") as f:
with open(os.path.join(here, "src", "incendium", "__version__.py"), "r") as f:
exec (f.read(), about)

with open("README.md", "r", "utf-8") as f:
Expand Down

0 comments on commit 7da881d

Please sign in to comment.