Skip to content

Commit

Permalink
Move version to pyproject
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Aug 15, 2024
1 parent d07ac66 commit 2d1b252
Show file tree
Hide file tree
Showing 41 changed files with 40 additions and 123 deletions.
7 changes: 2 additions & 5 deletions plugins/cell/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_cell"
version = "0.2.13"
description = "TXL plugin for a cell"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,17 +23,13 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"pycrdt >=0.8.11,<0.9.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/cell"

[project.entry-points]
"asphalt.components" = {cell = "txl_cell.components:CellComponent"}
"txl.components" = {cell = "txl_cell.components:CellComponent"}

[tool.hatch.version]
path = "txl_cell/__init__.py"
1 change: 0 additions & 1 deletion plugins/cell/txl_cell/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/console/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_console"
version = "0.2.15"
description = "TXL plugin for a Jupyter console"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,17 +23,13 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"jupyter-ydoc >=2.0.0,<3.0.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/console"

[project.entry-points]
"asphalt.components" = {console = "txl_console.components:ConsoleComponent"}
"txl.components" = {console = "txl_console.components:ConsoleComponent"}

[tool.hatch.version]
path = "txl_console/__init__.py"
1 change: 0 additions & 1 deletion plugins/console/txl_console/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.15"
7 changes: 2 additions & 5 deletions plugins/editors/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_editors"
version = "0.2.13"
description = "TXL plugin for editors"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,16 +23,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl"
"txl >=0.2.18,<0.3.0"
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/editors"

[project.entry-points]
"asphalt.components" = {editors = "txl_editors.components:EditorsComponent"}
"txl.components" = {editors = "txl_editors.components:EditorsComponent"}

[tool.hatch.version]
path = "txl_editors/__init__.py"
1 change: 0 additions & 1 deletion plugins/editors/txl_editors/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/file_browser/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_file_browser"
version = "0.2.13"
description = "TXL plugin for a file browser"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,16 +23,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl"
"txl >=0.2.18,<0.3.0"
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/file_browser"

[project.entry-points]
"asphalt.components" = {file_browser = "txl_file_browser.components:FileBrowserComponent"}
"txl.components" = {file_browser = "txl_file_browser.components:FileBrowserComponent"}

[tool.hatch.version]
path = "txl_file_browser/__init__.py"
1 change: 0 additions & 1 deletion plugins/file_browser/txl_file_browser/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/image_viewer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_image_viewer"
version = "0.2.13"
description = "TXL plugin for an image viewer"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,17 +23,13 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"textual-imageview >=0.1.1",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/image_viewer"

[project.entry-points]
"asphalt.components" = {image_viewer = "txl_image_viewer.components:ImageViewerComponent"}
"txl.components" = {image_viewer = "txl_image_viewer.components:ImageViewerComponent"}

[tool.hatch.version]
path = "txl_image_viewer/__init__.py"
1 change: 0 additions & 1 deletion plugins/image_viewer/txl_image_viewer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/jpterm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_jpterm"
version = "0.2.13"
description = "TXL plugin for the jpterm app"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,16 +23,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/jpterm"

[project.entry-points]
"asphalt.components" = {jpterm = "txl_jpterm.components:JptermComponent"}
"txl.components" = {jpterm = "txl_jpterm.components:JptermComponent"}

[tool.hatch.version]
path = "txl_jpterm/__init__.py"
1 change: 0 additions & 1 deletion plugins/jpterm/txl_jpterm/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
9 changes: 3 additions & 6 deletions plugins/kernel/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_kernel"
version = "0.2.13"
description = "TXL plugin for a kernel driver"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,15 +23,11 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"asphalt",
"txl >=0.2.18,<0.3.0",
"asphalt >=4.0.0,<5.0.0",
"python-dateutil >=2.8.2",
"pycrdt >=0.8.11,<0.9.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/kernel"

[tool.hatch.version]
path = "txl_kernel/__init__.py"
1 change: 0 additions & 1 deletion plugins/kernel/txl_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/launcher/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_launcher"
version = "0.2.13"
description = "TXL plugin for a launcher"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,16 +23,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl"
"txl >=0.2.18,<0.3.0"
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/launcher"

[project.entry-points]
"asphalt.components" = {launcher = "txl_launcher.components:LauncherComponent"}
"txl.components" = {launcher = "txl_launcher.components:LauncherComponent"}

[tool.hatch.version]
path = "txl_launcher/__init__.py"
1 change: 0 additions & 1 deletion plugins/launcher/txl_launcher/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/local_contents/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_local_contents"
version = "0.2.13"
description = "TXL plugin for local contents"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,18 +23,14 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"anyio >=3.7.0,<5",
"jupyter-ydoc >=2.0.0,<3.0.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/local_contents"

[project.entry-points]
"asphalt.components" = {local_contents = "txl_local_contents.components:LocalContentsComponent"}
"txl.components" = {local_contents = "txl_local_contents.components:LocalContentsComponent"}

[tool.hatch.version]
path = "txl_local_contents/__init__.py"
1 change: 0 additions & 1 deletion plugins/local_contents/txl_local_contents/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/local_kernels/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_local_kernels"
version = "0.2.13"
description = "TXL plugin for local kernels"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,19 +23,15 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"txl_kernel",
"pyzmq >=24.0.1",
"ipykernel",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/local_kernels"

[project.entry-points]
"asphalt.components" = {local_kernels = "txl_local_kernels.components:LocalKernelsComponent", local_kernelspecs = "txl_local_kernels.components:LocalKernelspecsComponent"}
"txl.components" = {local_kernels = "txl_local_kernels.components:LocalKernelsComponent", local_kernelspecs = "txl_local_kernels.components:LocalKernelspecsComponent"}

[tool.hatch.version]
path = "txl_local_kernels/__init__.py"
1 change: 0 additions & 1 deletion plugins/local_kernels/txl_local_kernels/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/local_terminals/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_local_terminals"
version = "0.2.13"
description = "TXL plugin for local terminals"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,18 +23,14 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"pywinpty;platform_system=='Windows'",
"anyio >=3.7.0,<5",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/local_terminals"

[project.entry-points]
"asphalt.components" = {local_terminals = "txl_local_terminals.components:LocalTerminalsComponent"}
"txl.components" = {local_terminals = "txl_local_terminals.components:LocalTerminalsComponent"}

[tool.hatch.version]
path = "txl_local_terminals/__init__.py"
1 change: 0 additions & 1 deletion plugins/local_terminals/txl_local_terminals/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/markdown_viewer/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_markdown_viewer"
version = "0.2.13"
description = "TXL plugin for a Markdown viewer"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,16 +23,12 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/markdown_viewer"

[project.entry-points]
"asphalt.components" = {markdown_viewer = "txl_markdown_viewer.components:MarkdownViewerComponent"}
"txl.components" = {markdown_viewer = "txl_markdown_viewer.components:MarkdownViewerComponent"}

[tool.hatch.version]
path = "txl_markdown_viewer/__init__.py"
1 change: 0 additions & 1 deletion plugins/markdown_viewer/txl_markdown_viewer/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
7 changes: 2 additions & 5 deletions plugins/notebook_editor/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "txl_notebook_editor"
version = "0.2.13"
description = "TXL plugin for a notebook editor"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -22,18 +23,14 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"txl",
"txl >=0.2.18,<0.3.0",
"pycrdt >=0.8.11,<0.9.0",
"jupyter-ydoc >=2.0.0,<3.0.0",
]
dynamic = ["version"]

[project.urls]
Source = "https://github.com/davidbrochart/jpterm/plugins/notebook_editor"

[project.entry-points]
"asphalt.components" = {notebook_editor = "txl_notebook_editor.components:NotebookEditorComponent"}
"txl.components" = {notebook_editor = "txl_notebook_editor.components:NotebookEditorComponent"}

[tool.hatch.version]
path = "txl_notebook_editor/__init__.py"
1 change: 0 additions & 1 deletion plugins/notebook_editor/txl_notebook_editor/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +0,0 @@
__version__ = "0.2.13"
Loading

0 comments on commit 2d1b252

Please sign in to comment.