From 35c9a5975f3234228dd8083bd8f075a21005d6c6 Mon Sep 17 00:00:00 2001 From: gjmooney Date: Fri, 12 Jan 2024 09:49:15 +0100 Subject: [PATCH] Remove some files --- pyproject.toml | 82 -------------------------------------------------- setup.py | 2 -- 2 files changed, 84 deletions(-) delete mode 100644 pyproject.toml delete mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 3c9ac9b7d..000000000 --- a/pyproject.toml +++ /dev/null @@ -1,82 +0,0 @@ -[build-system] -requires = [ - "hatchling", - "jupyterlab==4.*", -] -build-backend = "hatchling.build" - -[project] -name = "ipyleaflet" -version = "0.18.1" -description = "A Jupyter widget for dynamic Leaflet maps" -readme = "README.md" -authors = [ - { name = "Project Jupyter", email = "jupyter@googlegroups.com" }, -] -keywords = [ - "ipython", "jupyter", "widgets", "graphics", "GIS", -] -classifiers = [ - "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: Science/Research", - "Topic :: Multimedia :: Graphics", - "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Programming Language :: Python :: 3.10", -] -dependencies = [ - "ipywidgets>=7.6.0,<9", - "traittypes>=0.2.1,<3", - "xyzservices>=2021.8.1", - "branca>=0.5.0", -] - -[project.urls] -Homepage = "https://github.com/jupyter-widgets/ipyleaflet" - -[tool.hatch.build] -artifacts = [ - "ipyleaflet/nbextension/index.*", - "ipyleaflet/labextension", -] - -[tool.hatch.build.targets.wheel.shared-data] -"ipyleaflet/nbextension" = "share/jupyter/nbextensions/jupyter-leaflet" -"ipyleaflet/labextension" = "share/jupyter/labextensions/jupyter-leaflet" -"jupyter-leaflet.json" = "etc/jupyter/nbconfig/notebook.d/jupyter-leaflet.json" - -[tool.hatch.build.targets.sdist] -exclude = [ - ".github", -] - -[tool.hatch.build.hooks.jupyter-builder] -ensured-targets = [ - "ipyleaflet/nbextension/index.js", - "ipyleaflet/labextension/package.json", -] -dependencies = [ - "hatch-jupyter-builder>=0.8.1", -] -build-function = "hatch_jupyter_builder.npm_builder" - -[tool.hatch.build.hooks.jupyter-builder.build-kwargs] -path = "./js" -build_cmd = "build" -npm = [ - "jlpm", -] - -[tool.ruff] -extend-include = ["*.ipynb"] - -[tool.ruff.lint] -select = [ - # pycodestyle - "E", -] -ignore = ["E501", "E731"] diff --git a/setup.py b/setup.py deleted file mode 100644 index 20b64fb33..000000000 --- a/setup.py +++ /dev/null @@ -1,2 +0,0 @@ -# Copyright (c) Jupyter Development Team. -__import__("setuptools").setup() \ No newline at end of file