diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/setup.py (renamed from python/libghdl/setup.py) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/libghdl/setup.py b/python/setup.py index c7c3de80b..e75e37b84 100644 --- a/python/libghdl/setup.py +++ b/python/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python from distutils.core import setup -from config import __version__ +from libghdl.config import __version__ setup( name='libghdl', @@ -16,7 +16,7 @@ write tools like linters. url='http://github.com/ghdl/ghdl', license='GPL-2.0-or-later', package_dir={ - 'libghdl': './' + 'libghdl': './libghdl' }, packages=[ 'libghdl', |