-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from plone/pep-420-native-namespace
Pep 420 native namespace
- Loading branch information
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Drop support for ``pkg_resources`` namespace and replace it with PEP 420 native namespace. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
from pathlib import Path | ||
from setuptools import find_packages | ||
from setuptools import find_namespace_packages | ||
from setuptools import setup | ||
|
||
|
||
version = "2.0.1.dev0" | ||
version = "3.0.dev0" | ||
|
||
long_description = ( | ||
f"{Path('README.rst').read_text()}\n" | ||
|
@@ -37,8 +37,7 @@ | |
author_email="[email protected]", | ||
license="ZPL", | ||
url="https://github.com/plone/five.intid", | ||
packages=find_packages(), | ||
namespace_packages=["five"], | ||
packages=find_namespace_packages(), | ||
include_package_data=True, | ||
zip_safe=False, | ||
python_requires=">=3.8", | ||
|