Skip to content

Commit

Permalink
new version 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-nour committed Oct 1, 2024
1 parent 8988553 commit dc90a76
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 11 deletions.
13 changes: 4 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,18 @@ build-backend = "setuptools.build_meta"

[project]
name = "tab-pal"
version = "0.1.0"
version = "0.1.1"
description = "A TUI for adding and editing Tableau custom colour palettes."
authors = [
{ name = "Ben Nour", email = "[email protected]" }
]
dependencies = [
"textual>=0.56.4"
]
authors = [{ name = "Ben Nour", email = "[email protected]" }]
dependencies = ["textual==0.81.0"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
]
license = { file = "LICENSE" }
readme = "README.md"
Expand All @@ -36,4 +32,3 @@ package-data = { "tab_pal" = ["tabpal.tcss"] }

[project.scripts]
tab-pal = "tab_pal.tab_pal:main"

2 changes: 1 addition & 1 deletion tab_pal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """Ben Nour"""
__email__ = "[email protected]"
__version__ = "0.1.0"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion tab_pal/tab_pal.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class TabPal(App):
"""A TUI app for adding and editing colour palettes to Tableau."""

CSS_PATH = "tabpal.tcss"
SCREENS = {"configuration": Configuration(), "add_palette": AddPalette()}
SCREENS = {"configuration": Configuration, "add_palette": AddPalette}
BINDINGS = [
("a", "add_palette", "Add palette"),
("d", "delete", "Delete palette or colour"),
Expand Down

0 comments on commit dc90a76

Please sign in to comment.