Skip to content

Commit

Permalink
replace setuptools find_packages by find_namespace_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
clavay committed Jul 11, 2023
1 parent 60b4c8b commit 76e1d96
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 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages
import os
from pyscada import scripting as pyscada_app

Expand Down Expand Up @@ -33,7 +33,7 @@
install_requires=[
'pyscada>=0.8.0',
],
packages=find_packages(exclude=["project", "project.*"]),
packages=find_namespace_packages(exclude=["project", "project.*"]),
include_package_data=True,
zip_safe=False,
test_suite='runtests.main'
Expand Down

0 comments on commit 76e1d96

Please sign in to comment.