File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1+ Fix metadata for the package. @ericof
Original file line number Diff line number Diff line change 11"""Installer for the kitconcept.seo package."""
22
33from pathlib import Path
4- from setuptools import find_packages
4+ from setuptools import find_namespace_packages
55from setuptools import setup
66
77
3030 "Programming Language :: Python :: 3.10" ,
3131 "Programming Language :: Python :: 3.11" ,
3232 "Operating System :: OS Independent" ,
33- "License :: OSI Approved :: GNU General Public License v2 (GPLv2)" ,
3433 ],
3534 keywords = "Python Plone CMS" ,
3635 author = "kitconcept GmbH" ,
4241 "Tracker" : "https://github.com/kitconcept/kitconcept.seo/issues" ,
4342 },
4443 license = "GPL version 2" ,
45- packages = find_packages ( "src" , exclude = ["ez_setup " ]),
44+ packages = find_namespace_packages ( where = "src/ " , include = ["kitconcept.* " ]),
4645 namespace_packages = ["kitconcept" ],
4746 package_dir = {"" : "src" },
4847 include_package_data = True ,
Original file line number Diff line number Diff line change 11from pkgutil import extend_path
22
3+
34__path__ = extend_path (__path__ , __name__ )
You can’t perform that action at this time.
0 commit comments