├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE.md ├── Makefile ├── README.md ├── pyproject.toml ├── src ├── basilico │ ├── __init__.py │ ├── alpine.py │ ├── attributes.py │ ├── components.py │ ├── elements.py │ ├── htmx.py │ ├── node.py │ └── py.typed └── tests │ ├── __init__.py │ ├── test_alpine.py │ ├── test_attributes.py │ ├── test_benchmarks.py │ ├── test_components.py │ ├── test_elements.py │ └── test_htmx.py └── uv.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/basilico/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.1.0" 2 | -------------------------------------------------------------------------------- /src/basilico/alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/basilico/alpine.py -------------------------------------------------------------------------------- /src/basilico/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/basilico/attributes.py -------------------------------------------------------------------------------- /src/basilico/components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/basilico/components.py -------------------------------------------------------------------------------- /src/basilico/elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/basilico/elements.py -------------------------------------------------------------------------------- /src/basilico/htmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/basilico/htmx.py -------------------------------------------------------------------------------- /src/basilico/node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/basilico/node.py -------------------------------------------------------------------------------- /src/basilico/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tests/test_alpine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/tests/test_alpine.py -------------------------------------------------------------------------------- /src/tests/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/tests/test_attributes.py -------------------------------------------------------------------------------- /src/tests/test_benchmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/tests/test_benchmarks.py -------------------------------------------------------------------------------- /src/tests/test_components.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/tests/test_components.py -------------------------------------------------------------------------------- /src/tests/test_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/tests/test_elements.py -------------------------------------------------------------------------------- /src/tests/test_htmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/src/tests/test_htmx.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arskode/basilico/HEAD/uv.lock --------------------------------------------------------------------------------