Skip to content

Commit

Permalink
Merge pull request #2 from dataflake/pep_420
Browse files Browse the repository at this point in the history
Implement support for PEP 420 namespaces
  • Loading branch information
dataflake committed Mar 14, 2024
2 parents 66c05eb + f0c8333 commit fb2bd87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Change log
----------------
- Add support for Python 3.13.

- Implement support for PEP 420 namespaces.


3.1 (2024-01-03)
----------------
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

import os

from setuptools import find_packages
from setuptools import setup


Expand Down Expand Up @@ -54,9 +53,8 @@ def read(*rnames):
'Issue Tracker': 'https://github.com/dataflake/dataflake.cache/issues',
},
license="ZPL 2.1",
packages=find_packages('src'),
package_dir={'': 'src'},
namespace_packages=['dataflake'],
packages=['dataflake.cache'],
python_requires='>=3.7',
include_package_data=True,
install_requires=[
Expand Down
1 change: 0 additions & 1 deletion src/dataflake/__init__.py

This file was deleted.

0 comments on commit fb2bd87

Please sign in to comment.