Skip to content

Commit

Permalink
find_namespace_packages replaced find_packages for better compatiblit…
Browse files Browse the repository at this point in the history
…y in setup.py
  • Loading branch information
kbessonov1984 committed Mar 12, 2024
1 parent 716805e commit f02638f
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,5 +1,5 @@
from distutils.core import setup
from setuptools import find_packages
from setuptools import find_namespace_packages
from setuptools.command.install import install
from sistr.version import __version__
import subprocess
Expand Down Expand Up @@ -33,7 +33,7 @@ def run(self):
setup(
name='sistr_cmd',
version=__version__,
packages=find_packages(exclude=['tests']),
packages=find_namespace_packages(exclude=['tests']),
url='https://github.com/phac-nml/sistr_cmd',
license='Apache 2.0',
author='Peter Kruczkiewicz',
Expand Down

0 comments on commit f02638f

Please sign in to comment.