Skip to content

Commit 426826b

Browse files
committed
fix: SetuptoolsDeprecationWarning: Installing 'XXX' as data is deprecated, please list it in packages
1 parent 751bd13 commit 426826b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ History:
33
<see Git checking messages for history>
44

55
8.0.2 2023/xx/xx
6+
- fixed SetuptoolsDeprecationWarning: Installing 'XXX' as data is deprecated, please list it in packages
67
- CLI: fixed arguments handling
78

89
8.0.1 2023/04/09

setup.cfg

+6-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,14 @@ classifiers =
3535
[options]
3636
zip_safe = False
3737
include_package_data = True
38-
packages_dir = mss
39-
packages = find:
38+
packages = find_namespace:
4039
python_requires = >=3.8
4140

41+
[options.packages.find]
42+
include =
43+
mss
44+
mss.*
45+
4246
[options.entry_points]
4347
console_scripts =
4448
mss = mss.__main__:main

0 commit comments

Comments
 (0)