Skip to content

Commit 9c451c9

Browse files
committed
nbdev3
1 parent aab2d2f commit 9c451c9

7 files changed

Lines changed: 251 additions & 325 deletions

File tree

monsterui/_modidx.py

Lines changed: 220 additions & 220 deletions
Large diffs are not rendered by default.

monsterui/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# %% ../nbs/01_core.ipynb #30ffe3c5
88
import fasthtml.common as fh
9-
from .foundations import *
9+
from monsterui.foundations import *
1010
from fasthtml.common import FastHTML, fast_app
1111
from enum import Enum, auto
1212
from fastcore.all import *

monsterui/daisy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# %% ../nbs/03_daisy.ipynb #d623c13c
77
import fasthtml.common as fh
8-
from .foundations import *
8+
from monsterui.foundations import *
99
from fasthtml.common import Div, Span, FT
1010
from fasthtml.svg import *
1111
from enum import auto

monsterui/franken.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# %% ../nbs/02_franken.ipynb #a9b7e605
2424
import fasthtml.common as fh
25-
from .foundations import *
25+
from monsterui.foundations import *
2626
from fasthtml.common import Div, P, Span, FT
2727
from enum import Enum, auto
2828
from fasthtml.components import Uk_select,Uk_input_tag,Uk_icon,Uk_input_range, Uk_chart

pyproject.toml

Lines changed: 28 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
11
[build-system]
2-
requires = ["setuptools>=64.0"]
2+
requires = ["setuptools>=64"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name="monsterui"
6+
name="MonsterUI"
7+
dynamic = ["version"]
8+
description = "The simplicity of FastHTML with the power of Tailwind"
9+
readme = "README.md"
710
requires-python=">=3.10"
8-
dynamic = [ "keywords", "description", "version", "dependencies", "optional-dependencies", "readme", "license", "authors", "classifiers", "entry-points", "scripts", "urls"]
11+
license = {text = "Apache-2.0"}
12+
authors = [{name = "isaac flath", email = "isaac.flath@gmail.com"}]
13+
keywords = ['nbdev', 'jupyter', 'notebook', 'python']
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"Programming Language :: Python :: 3 :: Only",
17+
]
18+
dependencies = []
919

10-
[tool.uv]
11-
cache-keys = [{ file = "pyproject.toml" }, { file = "settings.ini" }, { file = "setup.py" }]
20+
[project.urls]
21+
Repository = "https://github.com/AnswerDotAI/MonsterUI"
22+
Documentation = "https://monsterui.answer.ai/MonsterUI"
23+
24+
[project.entry-points.nbdev]
25+
monsterui = "monsterui._modidx:d"
26+
27+
[tool.setuptools.dynamic]
28+
version = {attr = "monsterui.__version__"}
29+
30+
[tool.setuptools.packages.find]
31+
include = ["monsterui"]
32+
33+
[tool.nbdev]
34+
custom_sidebar = false

settings.ini

Lines changed: 0 additions & 40 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 57 deletions
This file was deleted.

0 commit comments

Comments
 (0)