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 .github/workflows/validate-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install uv
uv pip install --system -e .
uv pip install --system -e ".[dev]"

- name: Generate markdown files
run: python scripts/generate_markdown.py
Expand Down
Empty file added app/registry/__init__.py
Empty file.
Empty file.
3 changes: 3 additions & 0 deletions cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,9 @@ def main():
)
sub = parser.add_subparsers(dest="command")

# init
sub.add_parser("init", help="Initialize Buridan UI utilities in a Reflex project")

# create
sub.add_parser("create", help="Open the Buridan UI theme builder in your browser")

Expand Down
38 changes: 36 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,43 @@
[project]
name = "buridan-create"
version = "0.1.12"
version = "0.1.17"
description = "CLI to initialize Buridan UI design system in Reflex apps"
requires-python = ">=3.11"
dependencies = [
dependencies = []

readme = "README.md"
license = "MIT"

authors = [
{ name = "LineIndent", email = "line.indent@gmail.com" }
]

keywords = [
"cli",
"ui",
"design-system",
"reflex",
"components",
"tailwind",
"generator"
]

classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Code Generators"
]

[project.urls]
Homepage = "https://github.com/LineIndent/ui"
Repository = "https://github.com/LineIndent/ui"
Issues = "https://github.com/LineIndent/ui/issues"

[dependency-groups]
dev = [
"reflex==0.9.6",
"reflex-hosting-cli>=0.1.67",
"reflex-components-internal",
Expand Down
10 changes: 7 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading