Skip to content

Commit

Permalink
Update Pyproject metadata
Browse files Browse the repository at this point in the history
`License :: *` are deprecated, and Funding is not via Numfocus.
  • Loading branch information
Carreau committed Feb 28, 2025
1 parent 3800504 commit e3da327
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion jupyter_core/paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ def jupyter_data_dir() -> str:

if sys.platform == "darwin":
return str(Path(home, "Library", "Jupyter"))
if sys.platform == "win32": # type: ignore[unreachable]
if sys.platform == "win32":
appdata = os.environ.get("APPDATA", None)
if appdata:
return str(Path(appdata, "jupyter").resolve())
Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3"
]
Expand All @@ -34,7 +33,6 @@ content-type = "text/plain"
[project.urls]
Homepage = "https://jupyter.org"
Documentation = "https://jupyter-core.readthedocs.io/"
Funding = "https://numfocus.org/"
Source = "https://github.com/jupyter/jupyter_core"
Tracker = "https://github.com/jupyter/jupyter_core/issues"

Expand Down

0 comments on commit e3da327

Please sign in to comment.