Skip to content

Commit 9635181

Browse files
committed
fixing import of pkg_info
1 parent 8592bf5 commit 9635181

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
#!/usr/bin/python
22
# -*- coding: utf-8 -*-
33
import setuptools
4+
import sys
5+
import os
46

5-
import NodeGraphQt.pkg_info as pkg_info
7+
sys.path.append( os.path.join(os.path.dirname(__file__), "NodeGraphQt"))
8+
9+
import pkg_info
610

711
with open('README.md', 'r') as fh:
812
long_description = fh.read()

0 commit comments

Comments
 (0)