Fixed setup script

This commit is contained in:
jpk 2019-10-03 10:59:53 +02:00
parent 6e0729e6f0
commit f5882933ab
1 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,9 @@
import sys
from setuptools import setup, find_namespace_packages
from distutils.util import convert_path
sys.path.insert(0, 'src/')
main_ns = {}
ver_path = convert_path('src/sbeam.py')
with open(ver_path) as ver_file: