8000 Deprecate pkg_resources.declare_namespace by cyschneck · Pull Request #557 · NCAR/geocat-comp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Deprecate pkg_resources.declare_namespace #557

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

Closed
wants to merge 12 commits into from
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from sphinx.util import logging
from textwrap import dedent, indent

sys.path.insert(0, os.path.abspath("../geocat"))

print("sys.path:", sys.path)

import geocat.comp as gc
Expand Down
1 change: 0 additions & 1 deletion geocat/__init__.py

This file was deleted.

9 changes: 6 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ classifiers =

[options]
zip_safe = False
packages = find_namespace:
include_package_data = True
python_requires = >=3.9, <3.13
packages =
geocat
geocat.comp
package_dir =
=geocat
setup_requires =
setuptools_scm
setuptools
Expand All @@ -48,6 +48,9 @@ tests_require =
netcdf4
geocat-datafiles

[options.packages.find]
where = geocat

[options.extras_require]
docs =
ipykernel
Expand Down
0