Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dash_tailwindcss_plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .plugin import setup_tailwindcss_plugin


__version__ = '0.1.5'
__version__ = '0.1.6'

__all__ = [
'setup_tailwindcss_plugin',
Expand Down
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "dash-tailwindcss-plugin"
version = "0.1.5"
version = "0.1.6"
description = "A Dash plugin for integrating TailwindCSS using Dash 3.x hooks"
readme = "README.md"
requires-python = ">=3.8"
Expand Down Expand Up @@ -36,7 +36,14 @@ Repository = "https://github.com/HogaStack/dash-tailwindcss-plugin"
Issues = "https://github.com/HogaStack/dash-tailwindcss-plugin/issues"

[project.optional-dependencies]
dev = ["build", "dash[testing]>=3.0.3", "pytest", "pytest-cov", "twine"]
dev = [
"build",
"dash[testing]>=3.0.3",
"py-node-manager>=0.1.1",
"pytest",
"pytest-cov",
"twine",
]

[project.scripts]
dash-tailwindcss-plugin = "dash_tailwindcss_plugin.cli:main"
Expand Down
5 changes: 4 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
dash[testing]
build
dash[testing]>=3.0.3
py-node-manager>=0.1.1
pytest
pytest-cov
twine
Loading