Skip to content

Commit 2ba618a

Browse files
authored
feat: replace deprecated find_packages with find_namespace_packages (#1055)
1 parent d6b01ec commit 2ba618a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: UTF-8 -*-
22

3-
from setuptools import setup, find_packages
3+
from setuptools import setup, find_namespace_packages
44
import versioneer
55

66

@@ -9,7 +9,7 @@
99
author="Johannes Köster, Ryan Dale, The Bioconda Team",
1010
description="Utilities for building and managing conda packages",
1111
license="MIT",
12-
packages=find_packages(exclude=['test']),
12+
packages=find_namespace_packages(exclude=['test']),
1313
include_package_data=True,
1414
data_files=[
1515
(

0 commit comments

Comments
 (0)