fh-matui 0.9.2__tar.gz → 0.9.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {fh_matui-0.9.2/fh_matui.egg-info → fh_matui-0.9.4}/PKG-INFO +7 -8
  2. {fh_matui-0.9.2 → fh_matui-0.9.4}/README.md +6 -7
  3. fh_matui-0.9.4/fh_matui/__init__.py +1 -0
  4. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/_modidx.py +19 -18
  5. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/datatable.py +4 -4
  6. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/web_pages.py +75 -2
  7. {fh_matui-0.9.2 → fh_matui-0.9.4/fh_matui.egg-info}/PKG-INFO +7 -8
  8. {fh_matui-0.9.2 → fh_matui-0.9.4}/settings.ini +1 -1
  9. fh_matui-0.9.2/fh_matui/__init__.py +0 -1
  10. {fh_matui-0.9.2 → fh_matui-0.9.4}/LICENSE +0 -0
  11. {fh_matui-0.9.2 → fh_matui-0.9.4}/MANIFEST.in +0 -0
  12. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/app_pages.py +0 -0
  13. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/components.py +0 -0
  14. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/core.py +0 -0
  15. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui/foundations.py +0 -0
  16. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui.egg-info/SOURCES.txt +0 -0
  17. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui.egg-info/dependency_links.txt +0 -0
  18. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui.egg-info/entry_points.txt +0 -0
  19. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui.egg-info/not-zip-safe +0 -0
  20. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui.egg-info/requires.txt +0 -0
  21. {fh_matui-0.9.2 → fh_matui-0.9.4}/fh_matui.egg-info/top_level.txt +0 -0
  22. {fh_matui-0.9.2 → fh_matui-0.9.4}/pyproject.toml +0 -0
  23. {fh_matui-0.9.2 → fh_matui-0.9.4}/setup.cfg +0 -0
  24. {fh_matui-0.9.2 → fh_matui-0.9.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fh-matui
3
- Version: 0.9.2
3
+ Version: 0.9.4
4
4
  Summary: material-ui for fasthtml
5
5
  Home-page: https://github.com/abhisheksreesaila/fh-matui
6
6
  Author: abhishek sreesaila
@@ -112,7 +112,6 @@ def home():
112
112
  Card(
113
113
  H3("Welcome to fh-matui!"),
114
114
  P("Build beautiful Material Design apps with Python."),
115
- FormField("email", label="Email", type="email"),
116
115
  Button("Get Started", cls="primary"),
117
116
  ),
118
117
  cls="padding"
@@ -144,12 +143,12 @@ fh-matui automatically includes:
144
143
 
145
144
  | Module | Description | Key Components |
146
145
  |--------|-------------|----------------|
147
- | [Foundations](foundations.html) | Base utilities and helper functions | `BeerHeaders`, `display`, styling helpers |
148
- | [Core](core.html) | Theme system and styling | `MatTheme`, color presets, theme configuration |
149
- | [Components](components.html) | UI component library | `Button`, [`Card`](https://abhisheksreesaila.github.io/fh-matui/components.html#card), [`FormField`](https://abhisheksreesaila.github.io/fh-matui/components.html#formfield), [`FormModal`](https://abhisheksreesaila.github.io/fh-matui/components.html#formmodal), [`Grid`](https://abhisheksreesaila.github.io/fh-matui/components.html#grid) |
150
- | [App Pages](app_pages.html) | Application layouts | Navigation, sidebars, full-page layouts |
151
- | [Data Tables](05_table.html) | Data management components | [`DataTable`](https://abhisheksreesaila.github.io/fh-matui/table.html#datatable), [`DataTableResource`](https://abhisheksreesaila.github.io/fh-matui/table.html#datatableresource), CRUD operations |
152
- | [Web Pages](web_pages.html) | Marketing/landing pages | Hero sections, feature grids, testimonials |
146
+ | [Foundations](https://abhisheksreesaila.github.io/fh-matui/foundations.html) | Base utilities and helper functions | `BeerHeaders`, `display`, styling helpers |
147
+ | [Core](https://abhisheksreesaila.github.io/fh-matui/core.html) | Theme system and styling | `MatTheme`, color presets, theme configuration |
148
+ | [Components](https://abhisheksreesaila.github.io/fh-matui/components.html) | UI component library | `Button`, `Card`, `FormField`, `FormModal`, `Grid` |
149
+ | [App Pages](https://abhisheksreesaila.github.io/fh-matui/app_pages.html) | Application layouts | Navigation, sidebars, full-page layouts |
150
+ | [Data Tables](https://abhisheksreesaila.github.io/fh-matui/datatable.html) | Data management components | `DataTable`, `DataTableResource`, CRUD operations |
151
+ | [Web Pages](https://abhisheksreesaila.github.io/fh-matui/web_pages.html) | Marketing/landing pages | Hero sections, feature grids, testimonials |
153
152
 
154
153
  ## 🛠️ Development
155
154
 
@@ -74,7 +74,6 @@ def home():
74
74
  Card(
75
75
  H3("Welcome to fh-matui!"),
76
76
  P("Build beautiful Material Design apps with Python."),
77
- FormField("email", label="Email", type="email"),
78
77
  Button("Get Started", cls="primary"),
79
78
  ),
80
79
  cls="padding"
@@ -106,12 +105,12 @@ fh-matui automatically includes:
106
105
 
107
106
  | Module | Description | Key Components |
108
107
  |--------|-------------|----------------|
109
- | [Foundations](foundations.html) | Base utilities and helper functions | `BeerHeaders`, `display`, styling helpers |
110
- | [Core](core.html) | Theme system and styling | `MatTheme`, color presets, theme configuration |
111
- | [Components](components.html) | UI component library | `Button`, [`Card`](https://abhisheksreesaila.github.io/fh-matui/components.html#card), [`FormField`](https://abhisheksreesaila.github.io/fh-matui/components.html#formfield), [`FormModal`](https://abhisheksreesaila.github.io/fh-matui/components.html#formmodal), [`Grid`](https://abhisheksreesaila.github.io/fh-matui/components.html#grid) |
112
- | [App Pages](app_pages.html) | Application layouts | Navigation, sidebars, full-page layouts |
113
- | [Data Tables](05_table.html) | Data management components | [`DataTable`](https://abhisheksreesaila.github.io/fh-matui/table.html#datatable), [`DataTableResource`](https://abhisheksreesaila.github.io/fh-matui/table.html#datatableresource), CRUD operations |
114
- | [Web Pages](web_pages.html) | Marketing/landing pages | Hero sections, feature grids, testimonials |
108
+ | [Foundations](https://abhisheksreesaila.github.io/fh-matui/foundations.html) | Base utilities and helper functions | `BeerHeaders`, `display`, styling helpers |
109
+ | [Core](https://abhisheksreesaila.github.io/fh-matui/core.html) | Theme system and styling | `MatTheme`, color presets, theme configuration |
110
+ | [Components](https://abhisheksreesaila.github.io/fh-matui/components.html) | UI component library | `Button`, `Card`, `FormField`, `FormModal`, `Grid` |
111
+ | [App Pages](https://abhisheksreesaila.github.io/fh-matui/app_pages.html) | Application layouts | Navigation, sidebars, full-page layouts |
112
+ | [Data Tables](https://abhisheksreesaila.github.io/fh-matui/datatable.html) | Data management components | `DataTable`, `DataTableResource`, CRUD operations |
113
+ | [Web Pages](https://abhisheksreesaila.github.io/fh-matui/web_pages.html) | Marketing/landing pages | Hero sections, feature grids, testimonials |
115
114
 
116
115
  ## 🛠️ Development
117
116
 
@@ -0,0 +1 @@
1
+ __version__ = "0.9.4"
@@ -128,35 +128,35 @@ d = { 'settings': { 'branch': 'master',
128
128
  'fh_matui.core._ThemeNamespace.violet': ('core.html#_themenamespace.violet', 'fh_matui/core.py'),
129
129
  'fh_matui.core._ThemeNamespace.yellow': ('core.html#_themenamespace.yellow', 'fh_matui/core.py'),
130
130
  'fh_matui.core._ThemeNamespace.zinc': ('core.html#_themenamespace.zinc', 'fh_matui/core.py')},
131
- 'fh_matui.datatable': { 'fh_matui.datatable.DataTable': ('table.html#datatable', 'fh_matui/datatable.py'),
132
- 'fh_matui.datatable.DataTableResource': ('table.html#datatableresource', 'fh_matui/datatable.py'),
133
- 'fh_matui.datatable.DataTableResource.__init__': ( 'table.html#datatableresource.__init__',
131
+ 'fh_matui.datatable': { 'fh_matui.datatable.DataTable': ('datatable.html#datatable', 'fh_matui/datatable.py'),
132
+ 'fh_matui.datatable.DataTableResource': ('datatable.html#datatableresource', 'fh_matui/datatable.py'),
133
+ 'fh_matui.datatable.DataTableResource.__init__': ( 'datatable.html#datatableresource.__init__',
134
134
  'fh_matui/datatable.py'),
135
- 'fh_matui.datatable.DataTableResource._error_toast': ( 'table.html#datatableresource._error_toast',
135
+ 'fh_matui.datatable.DataTableResource._error_toast': ( 'datatable.html#datatableresource._error_toast',
136
136
  'fh_matui/datatable.py'),
137
- 'fh_matui.datatable.DataTableResource._filter_by_search': ( 'table.html#datatableresource._filter_by_search',
137
+ 'fh_matui.datatable.DataTableResource._filter_by_search': ( 'datatable.html#datatableresource._filter_by_search',
138
138
  'fh_matui/datatable.py'),
139
- 'fh_matui.datatable.DataTableResource._get_filtered_data': ( 'table.html#datatableresource._get_filtered_data',
139
+ 'fh_matui.datatable.DataTableResource._get_filtered_data': ( 'datatable.html#datatableresource._get_filtered_data',
140
140
  'fh_matui/datatable.py'),
141
- 'fh_matui.datatable.DataTableResource._handle_action': ( 'table.html#datatableresource._handle_action',
141
+ 'fh_matui.datatable.DataTableResource._handle_action': ( 'datatable.html#datatableresource._handle_action',
142
142
  'fh_matui/datatable.py'),
143
- 'fh_matui.datatable.DataTableResource._handle_save': ( 'table.html#datatableresource._handle_save',
143
+ 'fh_matui.datatable.DataTableResource._handle_save': ( 'datatable.html#datatableresource._handle_save',
144
144
  'fh_matui/datatable.py'),
145
- 'fh_matui.datatable.DataTableResource._handle_table': ( 'table.html#datatableresource._handle_table',
145
+ 'fh_matui.datatable.DataTableResource._handle_table': ( 'datatable.html#datatableresource._handle_table',
146
146
  'fh_matui/datatable.py'),
147
- 'fh_matui.datatable.DataTableResource._paginate': ( 'table.html#datatableresource._paginate',
147
+ 'fh_matui.datatable.DataTableResource._paginate': ( 'datatable.html#datatableresource._paginate',
148
148
  'fh_matui/datatable.py'),
149
- 'fh_matui.datatable.DataTableResource._register_routes': ( 'table.html#datatableresource._register_routes',
149
+ 'fh_matui.datatable.DataTableResource._register_routes': ( 'datatable.html#datatableresource._register_routes',
150
150
  'fh_matui/datatable.py'),
151
- 'fh_matui.datatable.DataTableResource._success_toast': ( 'table.html#datatableresource._success_toast',
151
+ 'fh_matui.datatable.DataTableResource._success_toast': ( 'datatable.html#datatableresource._success_toast',
152
152
  'fh_matui/datatable.py'),
153
- 'fh_matui.datatable.DataTableResource._wrap_modal': ( 'table.html#datatableresource._wrap_modal',
153
+ 'fh_matui.datatable.DataTableResource._wrap_modal': ( 'datatable.html#datatableresource._wrap_modal',
154
154
  'fh_matui/datatable.py'),
155
- 'fh_matui.datatable._action_menu': ('table.html#_action_menu', 'fh_matui/datatable.py'),
156
- 'fh_matui.datatable._page_size_select': ('table.html#_page_size_select', 'fh_matui/datatable.py'),
157
- 'fh_matui.datatable._safe_int': ('table.html#_safe_int', 'fh_matui/datatable.py'),
158
- 'fh_matui.datatable._to_dict': ('table.html#_to_dict', 'fh_matui/datatable.py'),
159
- 'fh_matui.datatable.table_state_from_request': ( 'table.html#table_state_from_request',
155
+ 'fh_matui.datatable._action_menu': ('datatable.html#_action_menu', 'fh_matui/datatable.py'),
156
+ 'fh_matui.datatable._page_size_select': ('datatable.html#_page_size_select', 'fh_matui/datatable.py'),
157
+ 'fh_matui.datatable._safe_int': ('datatable.html#_safe_int', 'fh_matui/datatable.py'),
158
+ 'fh_matui.datatable._to_dict': ('datatable.html#_to_dict', 'fh_matui/datatable.py'),
159
+ 'fh_matui.datatable.table_state_from_request': ( 'datatable.html#table_state_from_request',
160
160
  'fh_matui/datatable.py')},
161
161
  'fh_matui.foundations': { 'fh_matui.foundations.VEnum': ('foundations.html#venum', 'fh_matui/foundations.py'),
162
162
  'fh_matui.foundations.VEnum.__add__': ('foundations.html#venum.__add__', 'fh_matui/foundations.py'),
@@ -171,6 +171,7 @@ d = { 'settings': { 'branch': 'master',
171
171
  'fh_matui.web_pages.FAQSection': ('web_pages.html#faqsection', 'fh_matui/web_pages.py'),
172
172
  'fh_matui.web_pages.FeatureShowcase': ('web_pages.html#featureshowcase', 'fh_matui/web_pages.py'),
173
173
  'fh_matui.web_pages.FeaturesGrid': ('web_pages.html#featuresgrid', 'fh_matui/web_pages.py'),
174
+ 'fh_matui.web_pages.HeroSection': ('web_pages.html#herosection', 'fh_matui/web_pages.py'),
174
175
  'fh_matui.web_pages.LandingNavBar': ('web_pages.html#landingnavbar', 'fh_matui/web_pages.py'),
175
176
  'fh_matui.web_pages.LandingPageSimple': ('web_pages.html#landingpagesimple', 'fh_matui/web_pages.py'),
176
177
  'fh_matui.web_pages.MarkdownSection': ('web_pages.html#markdownsection', 'fh_matui/web_pages.py'),
@@ -1,11 +1,11 @@
1
1
  """Data table with pagination, search, sorting, and inline actions"""
2
2
 
3
- # AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/05_table.ipynb.
3
+ # AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/05_datatable.ipynb.
4
4
 
5
5
  # %% auto 0
6
6
  __all__ = ['PAGE_SIZES', 'table_state_from_request', 'DataTable', 'DataTableResource']
7
7
 
8
- # %% ../nbs/05_table.ipynb 2
8
+ # %% ../nbs/05_datatable.ipynb 2
9
9
  from fastcore.utils import *
10
10
  from fasthtml.common import *
11
11
  from fasthtml.jupyter import *
@@ -17,7 +17,7 @@ from .core import *
17
17
  from nbdev.showdoc import show_doc
18
18
  from .components import *
19
19
 
20
- # %% ../nbs/05_table.ipynb 6
20
+ # %% ../nbs/05_datatable.ipynb 6
21
21
  #| code-fold: true
22
22
  from math import ceil
23
23
  from urllib.parse import urlencode
@@ -288,7 +288,7 @@ def DataTable(
288
288
 
289
289
  return Div(card, Div(id=feedback_id), id=container_id)
290
290
 
291
- # %% ../nbs/05_table.ipynb 8
291
+ # %% ../nbs/05_datatable.ipynb 8
292
292
  from typing import Callable, Optional, Any, Union
293
293
  from dataclasses import asdict, is_dataclass
294
294
  from datetime import datetime
@@ -3,8 +3,9 @@
3
3
  # AUTOGENERATED! DO NOT EDIT! File to edit: ../nbs/04_web_pages.ipynb.
4
4
 
5
5
  # %% auto 0
6
- __all__ = ['SECTION_STYLE', 'SECTION_MARGIN', 'STANDARD_FOOTER_COLUMNS', 'FeatureShowcase', 'FeaturesGrid', 'PricingSection',
7
- 'FAQSection', 'PageFooter', 'LandingNavBar', 'LandingPageSimple', 'MarkdownSection', 'ContentPage']
6
+ __all__ = ['SECTION_STYLE', 'SECTION_MARGIN', 'STANDARD_FOOTER_COLUMNS', 'HeroSection', 'FeatureShowcase', 'FeaturesGrid',
7
+ 'PricingSection', 'FAQSection', 'PageFooter', 'LandingNavBar', 'LandingPageSimple', 'MarkdownSection',
8
+ 'ContentPage']
8
9
 
9
10
  # %% ../nbs/04_web_pages.ipynb 3
10
11
  import importlib
@@ -22,6 +23,78 @@ import fasthtml.components as fc
22
23
  from fasthtml.common import A, Button as FhButton, I, Span
23
24
 
24
25
 
26
+ # %% ../nbs/04_web_pages.ipynb 6
27
+ def HeroSection(
28
+ title: str, # Main hero title
29
+ subtitle: str, # Hero subtitle/description
30
+ primary_cta_text: str, # Primary CTA button text
31
+ primary_cta_href: str, # Primary CTA button href
32
+ secondary_cta_text: str = None, # Secondary CTA button text (optional)
33
+ secondary_cta_href: str = None, # Secondary CTA button href (optional)
34
+ background: str = "primary-container", # BeerCSS background class (without bg- prefix)
35
+ cls: str = "", # Additional classes
36
+ extra_css: str | None = None, # Optional custom CSS (minimal; opt-in)
37
+ extra_js: str | None = None, # Optional custom JS (minimal; opt-in)
38
+ ):
39
+ """Hero section with title, subtitle, and CTA buttons.
40
+
41
+ BeerCSS-first styling. Takes up 75vh by default with gradient overlay.
42
+ Designed for full-width layout - background extends edge-to-edge naturally.
43
+ Content is centered using responsive class internally.
44
+ """
45
+ # Hero styling: 75vh height + gradient overlay
46
+ # No width hacks needed - parent layout uses "max" for full-width
47
+ hero_css = """
48
+ .hero-section {
49
+ min-height: 75vh;
50
+ display: flex;
51
+ align-items: center;
52
+ justify-content: center;
53
+ position: relative;
54
+ background: linear-gradient(135deg,
55
+ var(--primary-container) 0%,
56
+ var(--surface-container) 50%,
57
+ var(--secondary-container) 100%);
58
+ }
59
+ .hero-section::before {
60
+ content: '';
61
+ position: absolute;
62
+ inset: 0;
63
+ background: radial-gradient(circle at 20% 80%, var(--primary) 0%, transparent 50%),
64
+ radial-gradient(circle at 80% 20%, var(--secondary) 0%, transparent 50%);
65
+ opacity: 0.1;
66
+ pointer-events: none;
67
+ }
68
+ .hero-content {
69
+ position: relative;
70
+ z-index: 1;
71
+ }
72
+ """
73
+
74
+ hooks = [Style(hero_css)]
75
+ if extra_css:
76
+ hooks.append(Style(extra_css))
77
+ if extra_js:
78
+ hooks.append(Script(extra_js))
79
+
80
+ ctas = [Button(primary_cta_text, href=primary_cta_href, variant="raised")]
81
+ if secondary_cta_text and secondary_cta_href:
82
+ ctas.append(Button(secondary_cta_text, href=secondary_cta_href, variant="outlined"))
83
+
84
+ stack = DivVStacked(
85
+ H1(title, cls="no-margin"),
86
+ P(subtitle, cls="secondary-text large-text"),
87
+ Div(*ctas, cls="row middle-align center-align small-space"),
88
+ cls="center-align large-padding hero-content",
89
+ )
90
+ # Content centered with responsive class
91
+ content = Div(stack, cls="responsive")
92
+ return Section(
93
+ *hooks,
94
+ content,
95
+ cls=f"hero-section {cls}".strip(),
96
+ )
97
+
25
98
  # %% ../nbs/04_web_pages.ipynb 10
26
99
  def FeatureShowcase(
27
100
  features: list, # List of dicts: {title, description, image_src?, icon?, image_alt?}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fh-matui
3
- Version: 0.9.2
3
+ Version: 0.9.4
4
4
  Summary: material-ui for fasthtml
5
5
  Home-page: https://github.com/abhisheksreesaila/fh-matui
6
6
  Author: abhishek sreesaila
@@ -112,7 +112,6 @@ def home():
112
112
  Card(
113
113
  H3("Welcome to fh-matui!"),
114
114
  P("Build beautiful Material Design apps with Python."),
115
- FormField("email", label="Email", type="email"),
116
115
  Button("Get Started", cls="primary"),
117
116
  ),
118
117
  cls="padding"
@@ -144,12 +143,12 @@ fh-matui automatically includes:
144
143
 
145
144
  | Module | Description | Key Components |
146
145
  |--------|-------------|----------------|
147
- | [Foundations](foundations.html) | Base utilities and helper functions | `BeerHeaders`, `display`, styling helpers |
148
- | [Core](core.html) | Theme system and styling | `MatTheme`, color presets, theme configuration |
149
- | [Components](components.html) | UI component library | `Button`, [`Card`](https://abhisheksreesaila.github.io/fh-matui/components.html#card), [`FormField`](https://abhisheksreesaila.github.io/fh-matui/components.html#formfield), [`FormModal`](https://abhisheksreesaila.github.io/fh-matui/components.html#formmodal), [`Grid`](https://abhisheksreesaila.github.io/fh-matui/components.html#grid) |
150
- | [App Pages](app_pages.html) | Application layouts | Navigation, sidebars, full-page layouts |
151
- | [Data Tables](05_table.html) | Data management components | [`DataTable`](https://abhisheksreesaila.github.io/fh-matui/table.html#datatable), [`DataTableResource`](https://abhisheksreesaila.github.io/fh-matui/table.html#datatableresource), CRUD operations |
152
- | [Web Pages](web_pages.html) | Marketing/landing pages | Hero sections, feature grids, testimonials |
146
+ | [Foundations](https://abhisheksreesaila.github.io/fh-matui/foundations.html) | Base utilities and helper functions | `BeerHeaders`, `display`, styling helpers |
147
+ | [Core](https://abhisheksreesaila.github.io/fh-matui/core.html) | Theme system and styling | `MatTheme`, color presets, theme configuration |
148
+ | [Components](https://abhisheksreesaila.github.io/fh-matui/components.html) | UI component library | `Button`, `Card`, `FormField`, `FormModal`, `Grid` |
149
+ | [App Pages](https://abhisheksreesaila.github.io/fh-matui/app_pages.html) | Application layouts | Navigation, sidebars, full-page layouts |
150
+ | [Data Tables](https://abhisheksreesaila.github.io/fh-matui/datatable.html) | Data management components | `DataTable`, `DataTableResource`, CRUD operations |
151
+ | [Web Pages](https://abhisheksreesaila.github.io/fh-matui/web_pages.html) | Marketing/landing pages | Hero sections, feature grids, testimonials |
153
152
 
154
153
  ## 🛠️ Development
155
154
 
@@ -5,7 +5,7 @@
5
5
  ### Python library ###
6
6
  repo = fh-matui
7
7
  lib_name = %(repo)s
8
- version = 0.9.2
8
+ version = 0.9.4
9
9
  min_python = 3.9
10
10
  license = apache2
11
11
  black_formatting = False
@@ -1 +0,0 @@
1
- __version__ = "0.9.2"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes