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

Update to implicit namespace package #220

Merged
merged 2 commits into from
Feb 27, 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
18 changes: 18 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
include LICENSE
include README.md

recursive-include geocat *.py
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
exclude .gitignore
exclude .pre-commit-config.yaml
exclude .readthedocs.yml

include *.md
include *.toml
include *.yaml
include *.txt
prune test*
prune .github*
prune docs*
prune build_envs*
2 changes: 2 additions & 0 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Internal Changes
^^^^^^^^^^^^^^^^
* Switch to PyPI Trusted Publishing by `Orhan Eroglu`_ in (:pr:`208`)
* Add ``linkcheck_ignore`` to ``docs/conf.py`` to address erroneous failures and add CI badge to README by `Katelyn FitzGerald`_ in (:pr:`218`)
* Convert to implicit namespace packaging set up by `Anissa Zacharias`_ in (:pr:`220`)

v2024.02.0 (February 6, 2024)
-----------------------------
Expand Down Expand Up @@ -123,3 +124,4 @@ Documentation
.. _`Katelyn Fitzgerald`: https://github.com/kafitzgerald
.. _`Simon Rosanka`: https://github.com/srosanka
.. _`Orhan Eroglu`: https://github.com/erogluorhan
.. _`Anissa Zacharias`: https://github.com/anissa111
7 changes: 4 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ include_package_data = True
python_requires = >=3.9, <3.13
package_dir =
=src
packages =
geocat
geocat.viz
packages = find_namespace:
setup_requires =
setuptools_scm
setuptools
Expand All @@ -46,6 +44,9 @@ install_requires =
scikit-learn
metpy

[options.packages.find]
where = src

[options.extras_require]
docs =
ipykernel
Expand Down
1 change: 0 additions & 1 deletion src/geocat/__init__.py

This file was deleted.

Loading