Skip to content

Commit

Permalink
fix: Module not found when installed with pip in Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed Mar 3, 2020
1 parent 1c4adcd commit 718ae78
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -4,7 +4,7 @@
"""

import sys
from setuptools import setup
from setuptools import setup, find_packages

with open('README.md') as f:
LONG_DESCRIPTION = f.read()
Expand All @@ -30,7 +30,8 @@
author_email='alexander.dunkel@tu-dresden.de',
url='https://gitlab.vgiscience.de/lbsn/lbsntransform',
license='GNU GPLv3 or any higher',
packages=['lbsntransform'],
packages=find_packages(
include=['lbsntransform', 'lbsntransform.*']),
include_package_data=True,
install_requires=[
'lbsnstructure>=0.5.1',
Expand Down

0 comments on commit 718ae78

Please sign in to comment.