Skip to content

Commit

Permalink
Releasing v24.7
Browse files Browse the repository at this point in the history
  • Loading branch information
lsheikal committed Jul 31, 2024
1 parent a158ac0 commit 5e34a95
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions pkgs/clean-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import re
import os

from setuptools import setup, find_packages
from setuptools import setup, find_packages, find_namespace_packages

def read(*paths):
'''read and return txt content of file'''
Expand Down Expand Up @@ -73,7 +73,7 @@ def find_version(*paths):
keywords = 'genie clean pyats cisco',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/conf-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import sys

from setuptools import setup, find_packages
from setuptools import setup, find_packages, find_namespace_packages

def read(*paths):
'''read and return txt content of file'''
Expand Down Expand Up @@ -98,7 +98,7 @@ def version_info(*paths):
keywords = 'genie pyats test automation',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/filetransferutils-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import re
import os

from setuptools import setup, find_packages, Command
from setuptools import setup, find_packages, Command, find_namespace_packages

def read(*paths):
'''read and return txt content of file'''
Expand Down Expand Up @@ -90,7 +90,7 @@ def find_version(*paths):
keywords = 'genie pyats test automation',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/health-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import re
import os

from setuptools import setup, find_packages
from setuptools import setup, find_packages, find_namespace_packages


def read(*paths):
Expand Down Expand Up @@ -80,7 +80,7 @@ def find_version(*paths):
},

# project packages
packages=find_packages(where='src'),
packages=find_namespace_packages(where='src'),

# additional package data files that goes into the package itself
package_data={
Expand Down
4 changes: 2 additions & 2 deletions pkgs/ops-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import sys

from setuptools import setup, find_packages
from setuptools import setup, find_packages, find_namespace_packages

def read(*paths):
'''read and return txt content of file'''
Expand Down Expand Up @@ -99,7 +99,7 @@ def version_info(*paths):
keywords = 'genie pyats test automation',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/robot-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import sys

from setuptools import setup, find_packages
from setuptools import setup, find_packages, find_namespace_packages

def read(*paths):
'''read and return txt content of file'''
Expand Down Expand Up @@ -98,7 +98,7 @@ def version_info(*paths):
keywords = 'genie pyats test automation robot',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/sdk-pkg/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import re
import sys

from setuptools import setup, find_packages
from setuptools import setup, find_packages, find_namespace_packages
from setuptools.command.develop import develop as setupdevelop


Expand Down Expand Up @@ -105,7 +105,7 @@ def version_info(*paths):
keywords = 'genie pyats test automation',

# project packages
packages = find_packages(where = 'src'),
packages = find_namespace_packages(where = 'src'),

# project directory
package_dir = {
Expand Down

0 comments on commit 5e34a95

Please sign in to comment.