Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to implicit (PEP 420) namespace. #8

Merged
merged 4 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
Changelog of megrok.strictrequire
=================================

4.1 (unreleased)
5.0 (unreleased)
----------------

- Nothing changed yet.
- Drop support for explicit (pkg_resources) namespaces and replace it with
an implicit (PEP 420) namespace.


4.0 (2024-01-25)
Expand Down
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import os.path

from setuptools import find_packages
from setuptools import setup


version = '4.1.dev0'
version = '5.0.dev0'


detailed = open(
Expand All @@ -22,7 +21,7 @@
'zope.interface',
'zope.securitypolicy',
'zope.testing',
'zope.testrunner',
'zope.testrunner >= 6.4',
]


Expand Down Expand Up @@ -54,8 +53,7 @@
url='http://www.thehealthagency.com',
license='ZPL 2.1',
package_dir={'': 'src'},
namespace_packages=['megrok'],
packages=find_packages('src'),
packages=['megrok.strictrequire'],
include_package_data=True,
zip_safe=False,
python_requires='>=3.7',
Expand Down
6 changes: 0 additions & 6 deletions src/megrok/__init__.py

This file was deleted.