picata 0.0.2__py3-none-any.whl → 0.0.4__py3-none-any.whl

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.
README.md CHANGED
@@ -1,9 +1,51 @@
1
1
  # Picata
2
2
 
3
- **This project is very much pre-alpha**
3
+ **_This project is very much pre-alpha_**
4
4
 
5
- Picata is the CMS & blog application I've forked off from my personal website.
6
- It's effectively a ton of pre-made Wagtail "stuff" (models, views, templatetags,
7
- middleware, hooks, etc.), made generic enough that you can include this app
8
- in your `INSTALLED_APPS` and have a CMS/blog up-and-running without having to
9
- spend weeks or months tailoring Wagtail to your needs.
5
+ Picata is a CMS & blog application I forked off from my personal website. At the
6
+ moment it's effectively a ton of pre-made [Wagtail](https://wagtail.org) "stuff"
7
+ (models, views, templatetags, middleware, hooks, etc.), made generic enough that
8
+ you can `pip install` the package, add it to your `INSTALLED_APPS`, and have a
9
+ CMS/blog up-and-running without having to spend weeks or months tailoring Wagtail
10
+ to your needs.
11
+
12
+ It's still under heavy development, with most documentation and a project
13
+ template pending but - if you're already working with Wagtail - the source
14
+ provides many working solutions to common problems. The repo for the aforementioned
15
+ personal website [lives on GitHub](https://github.com/hipikat/hpk.io), and
16
+ demonstrates a working implementation of this package (requiring, in fact, only
17
+ this package as a dependency).
18
+
19
+ ## What's in the box?
20
+
21
+ - [Wagtail](https://wagtail.org) (on [Django](https://www.djangoproject.com)) as the CMS & web frameworks
22
+ - Runs on [PostgreSQL](https://www.postgresql.org); loaded with scripts for managing the
23
+ database lifecycle and snapshots
24
+ - [Tailwind CSS](https://tailwindcss.com) in [Sass](https://sass-lang.com) for front-end styling
25
+ - [lxml](https://lxml.de) is used for fast HTML processing in a middleware layer
26
+
27
+ ### Development features & workflows
28
+
29
+ Everything's written in very modern Python (circa 2025), with agressive linting and type-checking
30
+ thanks to [mypy](https://mypy-lang.org),
31
+ [Pydantic](https://docs.pydantic.dev/latest/)/[Pyright](https://github.com/microsoft/pyright),
32
+ and [Ruff](https://docs.astral.sh/ruff/). Picata uses [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io),
33
+ [runserver_plus](https://django-extensions.readthedocs.io/en/latest/runserver_plus.html), and
34
+ [iPython](https://www.google.com/search?client=safari&rls=en&q=ipython&ie=UTF-8&oe=UTF-8) for
35
+ development workflows. The project itself uses [pre-commit](https://pre-commit.com) extensively,
36
+ with 16 hooks to keep everything neat and tidy.
37
+
38
+ All front-end code is written in [TypeScript](https://typescript-eslint.io), with
39
+ [React](https://react.dev) set up and ready-to-go in the [Webpack](https://webpack.js.org) pipeline,
40
+ if you're into that kind of thing.
41
+
42
+ ### Holding things together
43
+
44
+ - Uses [UV](https://github.com/astral-sh/uv) and
45
+ [pyproject.toml](https://packaging.python.org/en/latest/specifications/pyproject-toml/)
46
+ exclusively for Python project management
47
+ - [Just](https://just.systems) as a task runner, with over 60 recipes (at last count)
48
+ - [OpenTofu](https://opentofu.org) (a fork of [Terraform](https://www.terraform.io)) and
49
+ [cloud-init](https://cloud-init.io) for all DevOps & rapid deployment
50
+ - [Docker](https://www.docker.com) and [Docker Compose](https://docs.docker.com/compose/) for local
51
+ development
@@ -1,4 +1,4 @@
1
- {% extends "base.html" %}
1
+ {% extends "picata/base.html" %}
2
2
  {% comment %}
3
3
  Three-column layout, at `lg`-up, with a 25% aside, 50% article, and 25% nav.
4
4
 
@@ -1,4 +1,4 @@
1
- {% extends "base.html" %}
1
+ {% extends "picata/base.html" %}
2
2
 
3
3
  {% block title %}Page not found{% endblock %}
4
4
 
@@ -1,4 +1,4 @@
1
- {% extends "3_column.html" %}
1
+ {% extends "picata/3_column.html" %}
2
2
  {% load wagtailcore_tags %}
3
3
 
4
4
  {% block main_classes %}{{ block.super }} article{% endblock %}
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, viewport-fit=cover" />
6
- <title>{% block document_title %}{% if title %}{{ title }} · {% endif %}[Example Site]{% endblock %}</title>
6
+ <title>{% block document_title %}{% if title %}{{ title }} · {% endif %}hpk.io{% endblock %}</title>
7
7
 
8
8
  <style>
9
9
  @font-face { font-family: 'Sacramento'; src: url("{% static 'fonts/Sacramento-Regular.ttf' %}") format("truetype"); font-weight: 400; font-style: normal; }
@@ -25,7 +25,7 @@
25
25
 
26
26
  <meta property="og:title" content="{% block og_title %}Hpk.io{% endblock %}">
27
27
  <meta property="og:description" content="{% block og_description %}Ada Wrights's website - Hpk.io{% endblock %}">
28
- <meta property="og:image" content="{% block og_image %}{% if settings.picata.SocialSettings.default_social_image %}{{ request.scheme }}://{{ request.get_host }}/{% image_url settings.hpk.SocialSettings.default_social_image 'fill-1200x630' %}{% else %}{% absolute_static 'ada-social-bear.jpg' %}{% endif %}{% endblock %}">
28
+ <meta property="og:image" content="{% block og_image %}{% if settings.picata.SocialSettings.default_social_image %}{{ request.scheme }}://{{ request.get_host }}/{% image_url settings.picata.SocialSettings.default_social_image 'fill-1200x630' %}{% else %}{% absolute_static 'ada-social-bear.jpg' %}{% endif %}{% endblock %}">
29
29
  <meta property="og:url" content="{{ request.build_absolute_uri }}">
30
30
  <meta property="og:type" content="{% block og_type %}website{% endblock %}">
31
31
 
@@ -1,4 +1,4 @@
1
- {% extends "base.html" %}
1
+ {% extends "picata/base.html" %}
2
2
  {% load wagtailcore_tags %}
3
3
 
4
4
  {% block content %}
@@ -1,4 +1,4 @@
1
- {% extends "base.html" %}
1
+ {% extends "picata/base.html" %}
2
2
  {% comment %}
3
3
  Two-column layout (25%/75%), with a 2px line between the columns.
4
4
 
@@ -1,4 +1,4 @@
1
- {% extends "split_view.html" %}
1
+ {% extends "picata/split_view.html" %}
2
2
  {% load wagtailcore_tags %}
3
3
  {% comment %}
4
4
  Template for the HomePage class, utilising a split-view page layout.
@@ -1,4 +1,4 @@
1
- {% extends "dl_view.html" %}
1
+ {% extends "picata/dl_view.html" %}
2
2
  {% load wagtailcore_tags %}
3
3
 
4
4
  {% block main_classes %}{{ block.super }} post-list{% endblock %}
@@ -10,7 +10,7 @@
10
10
  </dd>
11
11
 
12
12
  {% for year, posts in posts_by_year.items %}
13
- {% include "_post_list.html" with posts=posts year=year %}
13
+ {% include "picata/_post_list.html" with posts=posts year=year %}
14
14
  {% endfor %}
15
15
 
16
16
  </dl>
@@ -1,4 +1,4 @@
1
- {% extends "3_column.html" %}
1
+ {% extends "picata/3_column.html" %}
2
2
 
3
3
  {% block title %}Home{% endblock %}
4
4
 
@@ -1,4 +1,4 @@
1
- {% extends "dl_view.html" %}
1
+ {% extends "picata/dl_view.html" %}
2
2
 
3
3
  {% block definitions %}
4
4
  <dt><p><a href="#what-is-lorem-ipsum">What is Lorem Ipsum?</a></p></dt>
@@ -1,4 +1,4 @@
1
- {% extends "split_view.html" %}
1
+ {% extends "picata/split_view.html" %}
2
2
 
3
3
  {% block content %}
4
4
  <div><p><a href="#what-is-lorem-ipsum">What is Lorem Ipsum?</a></p></div>
@@ -1,4 +1,4 @@
1
- {% extends "article.html" %}
1
+ {% extends "picata/article.html" %}
2
2
  {% load wagtailimages_tags %}
3
3
 
4
4
 
@@ -1,4 +1,4 @@
1
- {% extends "dl_view.html" %}
1
+ {% extends "picata/dl_view.html" %}
2
2
  {% load wagtailcore_tags stringify %}
3
3
 
4
4
  {% block main_classes %}{{ block.super }} post-list search-results{% endblock %}
@@ -22,7 +22,7 @@
22
22
  {% endif %}
23
23
  </dd>
24
24
 
25
- {% include "_post_list.html" with posts=pages %}
25
+ {% include "picata/_post_list.html" with posts=pages %}
26
26
 
27
27
  </dl>
28
28
  {% endblock %}
@@ -1,4 +1,4 @@
1
- {% extends "base.html" %}
1
+ {% extends "picata/base.html" %}
2
2
  {% comment %}
3
3
  Two-column layout (50%/50%), with a 2px line between the columns.
4
4
 
@@ -1,8 +1,5 @@
1
- <nav>
2
- <a href="{{ root_page.url }}">{{ root_page.title }}</a>
3
- {% for page in menu_pages %}
4
- <a href="{{ page.url }}">
5
- {{ page.title }}{% if not page.live %} (not live){% endif %}
6
- </a>
7
- {% endfor %}
8
- </nav>
1
+ {% for page in menu_pages %}
2
+ <a {% if page == current_section %}class="current" {% endif %}href="{{ page.url }}">
3
+ {{ page.title }}{% if not page.live %} (not live){% endif %}
4
+ </a>
5
+ {% endfor %}
@@ -0,0 +1,101 @@
1
+ Metadata-Version: 2.4
2
+ Name: picata
3
+ Version: 0.0.4
4
+ Summary: Ada's Wagtail-based CMS & blog
5
+ Project-URL: Documentation, https://github.com/hipikat/picata#readme
6
+ Project-URL: Issues, https://github.com/hipikat/picata/issues
7
+ Project-URL: Source, https://github.com/hipikat/picata
8
+ Author-email: Ada Wright <ada@hpk.io>
9
+ License: # The MIT License (MIT)
10
+
11
+ Copyright © `2024` `Ada Wright <ada@hpk.io>`
12
+
13
+ Permission is hereby granted, free of charge, to any person
14
+ obtaining a copy of this software and associated documentation
15
+ files (the “Software”), to deal in the Software without
16
+ restriction, including without limitation the rights to use,
17
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ copies of the Software, and to permit persons to whom the
19
+ Software is furnished to do so, subject to the following
20
+ conditions:
21
+
22
+ The above copyright notice and this permission notice shall be
23
+ included in all copies or substantial portions of the Software.
24
+
25
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
26
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
27
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
29
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
30
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
32
+ OTHER DEALINGS IN THE SOFTWARE.
33
+ License-File: LICENSE.md
34
+ Keywords: blog,cms,django,wagtail
35
+ Classifier: Development Status :: 2 - Pre-Alpha
36
+ Classifier: Framework :: Django CMS
37
+ Classifier: Framework :: Wagtail :: 6
38
+ Classifier: Programming Language :: Python
39
+ Classifier: Programming Language :: Python :: 3.13
40
+ Classifier: Programming Language :: Python :: Implementation :: CPython
41
+ Requires-Python: >=3.13
42
+ Requires-Dist: lxml~=5.3.0
43
+ Requires-Dist: psutil~=6.1.0
44
+ Requires-Dist: psycopg~=3.2.3
45
+ Requires-Dist: pygments~=2.18.0
46
+ Requires-Dist: python-slugify~=8.0.4
47
+ Requires-Dist: wagtail-modeladmin~=2.1.0
48
+ Requires-Dist: wagtail~=6.2
49
+ Description-Content-Type: text/markdown
50
+
51
+ # Picata
52
+
53
+ **_This project is very much pre-alpha_**
54
+
55
+ Picata is a CMS & blog application I forked off from my personal website. At the
56
+ moment it's effectively a ton of pre-made [Wagtail](https://wagtail.org) "stuff"
57
+ (models, views, templatetags, middleware, hooks, etc.), made generic enough that
58
+ you can `pip install` the package, add it to your `INSTALLED_APPS`, and have a
59
+ CMS/blog up-and-running without having to spend weeks or months tailoring Wagtail
60
+ to your needs.
61
+
62
+ It's still under heavy development, with most documentation and a project
63
+ template pending but - if you're already working with Wagtail - the source
64
+ provides many working solutions to common problems. The repo for the aforementioned
65
+ personal website [lives on GitHub](https://github.com/hipikat/hpk.io), and
66
+ demonstrates a working implementation of this package (requiring, in fact, only
67
+ this package as a dependency).
68
+
69
+ ## What's in the box?
70
+
71
+ - [Wagtail](https://wagtail.org) (on [Django](https://www.djangoproject.com)) as the CMS & web frameworks
72
+ - Runs on [PostgreSQL](https://www.postgresql.org); loaded with scripts for managing the
73
+ database lifecycle and snapshots
74
+ - [Tailwind CSS](https://tailwindcss.com) in [Sass](https://sass-lang.com) for front-end styling
75
+ - [lxml](https://lxml.de) is used for fast HTML processing in a middleware layer
76
+
77
+ ### Development features & workflows
78
+
79
+ Everything's written in very modern Python (circa 2025), with agressive linting and type-checking
80
+ thanks to [mypy](https://mypy-lang.org),
81
+ [Pydantic](https://docs.pydantic.dev/latest/)/[Pyright](https://github.com/microsoft/pyright),
82
+ and [Ruff](https://docs.astral.sh/ruff/). Picata uses [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io),
83
+ [runserver_plus](https://django-extensions.readthedocs.io/en/latest/runserver_plus.html), and
84
+ [iPython](https://www.google.com/search?client=safari&rls=en&q=ipython&ie=UTF-8&oe=UTF-8) for
85
+ development workflows. The project itself uses [pre-commit](https://pre-commit.com) extensively,
86
+ with 16 hooks to keep everything neat and tidy.
87
+
88
+ All front-end code is written in [TypeScript](https://typescript-eslint.io), with
89
+ [React](https://react.dev) set up and ready-to-go in the [Webpack](https://webpack.js.org) pipeline,
90
+ if you're into that kind of thing.
91
+
92
+ ### Holding things together
93
+
94
+ - Uses [UV](https://github.com/astral-sh/uv) and
95
+ [pyproject.toml](https://packaging.python.org/en/latest/specifications/pyproject-toml/)
96
+ exclusively for Python project management
97
+ - [Just](https://just.systems) as a task runner, with over 60 recipes (at last count)
98
+ - [OpenTofu](https://opentofu.org) (a fork of [Terraform](https://www.terraform.io)) and
99
+ [cloud-init](https://cloud-init.io) for all DevOps & rapid deployment
100
+ - [Docker](https://www.docker.com) and [Docker Compose](https://docs.docker.com/compose/) for local
101
+ development
@@ -1,5 +1,5 @@
1
1
  LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
2
- README.md,sha256=AfAF_bV1vYiJSwkGTWpdW6_OO55EgkzRGbW0b8aiLRI,420
2
+ README.md,sha256=7IWS68r8WrNkr78JVuw4qKzTbZjv_g4rXw36mn-QfTI,2846
3
3
  entrypoint.tsx,sha256=Tk6L2rCk0KrE5kaSL0GFuL3S19yG-BsUgvNAGe32uy8,8820
4
4
  manage.py,sha256=BkGWS_zb8HTvlrOxDiBaQoahUEJGCoV5ePhX-P6jIaw,426
5
5
  pygments.sass,sha256=zbDYpWda3EoGmjoC3JshZy-_CECNf6WU9abYPF8EHms,6369
@@ -41,33 +41,33 @@ picata/static/picata/fonts/ZillaSlab-BoldItalic.ttf,sha256=xra8p0e0zYZ5gyu5w6BeR
41
41
  picata/static/picata/fonts/ZillaSlab-Light.ttf,sha256=x9c6KiQ-iPpyqCDb2yYgDqi0GW-DNM8YIyTXqehumJ8,239836
42
42
  picata/static/picata/fonts/ZillaSlab-LightItalic.ttf,sha256=8pgf5nlQb5DBqfaNKDj2P7iDMRwaW80YjaC3hXb72PA,245200
43
43
  picata/static/picata/fonts/ZillaSlabHighlight-Bold.ttf,sha256=MbNNCVxe1Kt-j8rJpognUmTZrh9R9je-35MgwoeL7eU,245180
44
- picata/templates/picata/3_column.html,sha256=4SYfqTbmAtYICEulpx1RWocBCQUUn32EnZJrcxfVWwA,790
45
- picata/templates/picata/404.html,sha256=4q8kKGGHWDk9Z8ThW2rP70T3SQrGNGRf153pvYcV7VE,230
44
+ picata/templates/picata/3_column.html,sha256=LdoL-Ei3zPOvzwLDve6F3iGle8fu7Dj79o7GB-SllOQ,797
45
+ picata/templates/picata/404.html,sha256=sN5q0-wM7UqU8zv_vdo8upRR1cnahiCFT92gHuytNKc,237
46
46
  picata/templates/picata/500.html,sha256=1xvvK2uoiZKkc2EuVVnbfg69KmrCJUdplR0vvFtWvKo,369
47
47
  picata/templates/picata/_post_list.html,sha256=JpvNAOGmupLQIC6lTyjoyNOyRGMUQwOqEvEaZgSPrsM,915
48
- picata/templates/picata/article.html,sha256=NBwXpicb_oL2xy3FN8_6KJNbrrQD2rTrNIu1ngOietk,794
49
- picata/templates/picata/base.html,sha256=HUzVThUqYeyeY9GGIapcWAwiBJxJ32mDFQb7Jn5yf94,8157
50
- picata/templates/picata/basic_page.html,sha256=1FS_xdL6erskk9T-_TP3JWARczVstOLzs2ttvkbPbdk,173
51
- picata/templates/picata/dl_view.html,sha256=epAV72HR2f0I3GWBEngUtYOQnHSsXs_SsNlhH7u-JbU,494
52
- picata/templates/picata/home_page.html,sha256=nVDZwlsXfKtdSwQR80e0cHtiX7hf91ws5tYhu_ug_gU,635
53
- picata/templates/picata/post_listing.html,sha256=3aSWYdPfwvYblE4s7b2P_dOLiiCWcrT1uvXRuDBak5Y,428
54
- picata/templates/picata/search_results.html,sha256=P5HwdkLX2iQjZFEtD4YOp4Mun17btshjKBw__z6q8Hs,957
55
- picata/templates/picata/split_view.html,sha256=DqRUKT5wc_-ByibQRZoyDU91omK6TgK7wC3Rp72bbgM,402
48
+ picata/templates/picata/article.html,sha256=dlrqrJLbQNMpaG6rgkN9oUZNXUFMnj8al8dG-LL8V5Y,801
49
+ picata/templates/picata/base.html,sha256=QdmW5jgdUQleFjmWqTHVN9WYGpe8URMbEUQShClT_3c,8152
50
+ picata/templates/picata/basic_page.html,sha256=-oVigKCOqNt-dnBKCW_pXpvs7aBu8LZCJW0i-XuyI-4,180
51
+ picata/templates/picata/dl_view.html,sha256=VMZqmA_Wy3BCT0pHP4mHtiZnnkNC--TmjBNHYuKyuTQ,501
52
+ picata/templates/picata/home_page.html,sha256=UmOONJuVC_YsscNHW-q9QnQX-VCS88_kl-pgLLgsHIo,642
53
+ picata/templates/picata/post_listing.html,sha256=nmJZEFCjtWS56BmlK0SwwdiufZM8quEaqxs_QEYYz_M,442
54
+ picata/templates/picata/search_results.html,sha256=kYckF1a9X9xkTzc04Ax7-GqafUxKR2pGvjOFNyGQIzg,971
55
+ picata/templates/picata/split_view.html,sha256=TaJT72DuWXhrpCDdCVgqmmfppHL_RO25OJZkNm_EQsM,409
56
56
  picata/templates/picata/blocks/icon_link_item.html,sha256=t-9LoA00Nv-H031yIL8es89zevbn315jlr5LTiAyM_o,301
57
57
  picata/templates/picata/blocks/icon_link_list.html,sha256=7KU-hLOhAdKnoecLcugqWNzO5SgPnN9XfTDs1y60f0c,261
58
58
  picata/templates/picata/blocks/icon_link_list_stream.html,sha256=B7yz5Ss_dT_5NIMsVwggnGFGmRgawNQrvnowaJUSUnw,69
59
- picata/templates/picata/previews/3col.html,sha256=CwnWJpK5dvmVxqhBuu0QSFHWKhZlnc3xEowMQk3ltBo,4473
60
- picata/templates/picata/previews/dl.html,sha256=ANOqlD3nlj5NF-4sPmya3eo0CNwmxgmUXswmz22Bh30,2095
61
- picata/templates/picata/previews/split.html,sha256=hqv27u4wKTX8jJiNMazXioyRU9Uajpys_7LVQeI3NtE,2106
62
- picata/templates/picata/previews/theme_gallery.html,sha256=A3HRSP5mc5FbpN9VXcZxgof-4sGR8Ylv6hXHY6Y_Ydo,8013
63
- picata/templates/picata/tags/site_menu.html,sha256=Tb_BjV88ZH-nRb76alzSXPVUokPC9O2mVByKmeAgQWA,223
59
+ picata/templates/picata/previews/3col.html,sha256=geY0cLqkq72mVcHOcYrpLBJfOYs0KYbcUgKP2jswl8E,4480
60
+ picata/templates/picata/previews/dl.html,sha256=iO-Aqa7UxhTlJlgbHr8nN_YTtFxy8ge_cqQdyFmaWvs,2102
61
+ picata/templates/picata/previews/split.html,sha256=FtkVTs8f3G9uqMciioUyGtbJ_9jtNo5Iwek7Vb-Vziw,2113
62
+ picata/templates/picata/previews/theme_gallery.html,sha256=FzeaOpS9mcZpg5AwqBFbmqIN5kz2a7QwJjJMXUu7BBI,8020
63
+ picata/templates/picata/tags/site_menu.html,sha256=5V7uo71FFsAPMoXo6NUMsOeu5eHpVor60iNgSt_QoR4,201
64
64
  picata/templatetags/__init__.py,sha256=YNGfxmI00gewcJkkUlH219BHimHD_4p5Lz-zXPvgO-U,47
65
65
  picata/templatetags/absolute_static.py,sha256=YpkPQhquvk2dRcnGy4g2yeLEBzRirOaQNs8AlGyM8tc,457
66
66
  picata/templatetags/menu_tags.py,sha256=QBv2HNA-phOedijP2YErBkO067oHZUD8Bh80SaGwjdY,1844
67
67
  picata/templatetags/stringify.py,sha256=QxStfcCgn29IGinH_bdsZoaiTLL7pz30ObDitlagecs,850
68
68
  picata/typing/__init__.py,sha256=7qXco9cqvbveKX0Xprrc8DmgXa3MpkIQXtFsHDe77os,405
69
69
  picata/typing/wagtail.py,sha256=V0n9GYYb_CM5ic54lcRtpN6lhN37-QdRzz2mGKm3Cwc,664
70
- picata-0.0.2.dist-info/METADATA,sha256=Z0T9lYMlMULCxqwNCKz4I3WH1lj4n2kfWtH8MKGCh94,1426
71
- picata-0.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
72
- picata-0.0.2.dist-info/licenses/LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
73
- picata-0.0.2.dist-info/RECORD,,
70
+ picata-0.0.4.dist-info/METADATA,sha256=tNPsx50nN3r9bQ1Xn9pJTvVdNdCZdIZHkRsqsbKyh0g,5092
71
+ picata-0.0.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
72
+ picata-0.0.4.dist-info/licenses/LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
73
+ picata-0.0.4.dist-info/RECORD,,
@@ -1,37 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: picata
3
- Version: 0.0.2
4
- Summary: Ada's Wagtail-based CMS & blog
5
- Project-URL: Documentation, https://github.com/hipikat/picata#readme
6
- Project-URL: Issues, https://github.com/hipikat/picata/issues
7
- Project-URL: Source, https://github.com/hipikat/picata
8
- Author-email: Ada Wright <ada@hpk.io>
9
- License-Expression: MIT
10
- License-File: LICENSE.md
11
- Keywords: blog,cms,django,wagtail
12
- Classifier: Development Status :: 2 - Pre-Alpha
13
- Classifier: Framework :: Django CMS
14
- Classifier: Framework :: Wagtail :: 6
15
- Classifier: Programming Language :: Python
16
- Classifier: Programming Language :: Python :: 3.13
17
- Classifier: Programming Language :: Python :: Implementation :: CPython
18
- Requires-Python: >=3.13
19
- Requires-Dist: gunicorn~=23.0.0
20
- Requires-Dist: lxml~=5.3.0
21
- Requires-Dist: psutil~=6.1.0
22
- Requires-Dist: psycopg~=3.2.3
23
- Requires-Dist: pygments~=2.18.0
24
- Requires-Dist: python-slugify~=8.0.4
25
- Requires-Dist: wagtail-modeladmin~=2.1.0
26
- Requires-Dist: wagtail~=6.2
27
- Description-Content-Type: text/markdown
28
-
29
- # Picata
30
-
31
- **This project is very much pre-alpha**
32
-
33
- Picata is the CMS & blog application I've forked off from my personal website.
34
- It's effectively a ton of pre-made Wagtail "stuff" (models, views, templatetags,
35
- middleware, hooks, etc.), made generic enough that you can include this app
36
- in your `INSTALLED_APPS` and have a CMS/blog up-and-running without having to
37
- spend weeks or months tailoring Wagtail to your needs.
File without changes