picata 0.0.2__py3-none-any.whl → 0.0.3__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
|
-
**
|
3
|
+
**_This project is very much pre-alpha_**
|
4
4
|
|
5
|
-
Picata is
|
6
|
-
|
7
|
-
middleware, hooks, etc.), made generic enough that
|
8
|
-
|
9
|
-
spend weeks or months tailoring Wagtail
|
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
|
@@ -0,0 +1,102 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: picata
|
3
|
+
Version: 0.0.3
|
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: gunicorn~=23.0.0
|
43
|
+
Requires-Dist: lxml~=5.3.0
|
44
|
+
Requires-Dist: psutil~=6.1.0
|
45
|
+
Requires-Dist: psycopg~=3.2.3
|
46
|
+
Requires-Dist: pygments~=2.18.0
|
47
|
+
Requires-Dist: python-slugify~=8.0.4
|
48
|
+
Requires-Dist: wagtail-modeladmin~=2.1.0
|
49
|
+
Requires-Dist: wagtail~=6.2
|
50
|
+
Description-Content-Type: text/markdown
|
51
|
+
|
52
|
+
# Picata
|
53
|
+
|
54
|
+
**_This project is very much pre-alpha_**
|
55
|
+
|
56
|
+
Picata is a CMS & blog application I forked off from my personal website. At the
|
57
|
+
moment it's effectively a ton of pre-made [Wagtail](https://wagtail.org) "stuff"
|
58
|
+
(models, views, templatetags, middleware, hooks, etc.), made generic enough that
|
59
|
+
you can `pip install` the package, add it to your `INSTALLED_APPS`, and have a
|
60
|
+
CMS/blog up-and-running without having to spend weeks or months tailoring Wagtail
|
61
|
+
to your needs.
|
62
|
+
|
63
|
+
It's still under heavy development, with most documentation and a project
|
64
|
+
template pending but - if you're already working with Wagtail - the source
|
65
|
+
provides many working solutions to common problems. The repo for the aforementioned
|
66
|
+
personal website [lives on GitHub](https://github.com/hipikat/hpk.io), and
|
67
|
+
demonstrates a working implementation of this package (requiring, in fact, only
|
68
|
+
this package as a dependency).
|
69
|
+
|
70
|
+
## What's in the box?
|
71
|
+
|
72
|
+
- [Wagtail](https://wagtail.org) (on [Django](https://www.djangoproject.com)) as the CMS & web frameworks
|
73
|
+
- Runs on [PostgreSQL](https://www.postgresql.org); loaded with scripts for managing the
|
74
|
+
database lifecycle and snapshots
|
75
|
+
- [Tailwind CSS](https://tailwindcss.com) in [Sass](https://sass-lang.com) for front-end styling
|
76
|
+
- [lxml](https://lxml.de) is used for fast HTML processing in a middleware layer
|
77
|
+
|
78
|
+
### Development features & workflows
|
79
|
+
|
80
|
+
Everything's written in very modern Python (circa 2025), with agressive linting and type-checking
|
81
|
+
thanks to [mypy](https://mypy-lang.org),
|
82
|
+
[Pydantic](https://docs.pydantic.dev/latest/)/[Pyright](https://github.com/microsoft/pyright),
|
83
|
+
and [Ruff](https://docs.astral.sh/ruff/). Picata uses [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io),
|
84
|
+
[runserver_plus](https://django-extensions.readthedocs.io/en/latest/runserver_plus.html), and
|
85
|
+
[iPython](https://www.google.com/search?client=safari&rls=en&q=ipython&ie=UTF-8&oe=UTF-8) for
|
86
|
+
development workflows. The project itself uses [pre-commit](https://pre-commit.com) extensively,
|
87
|
+
with 16 hooks to keep everything neat and tidy.
|
88
|
+
|
89
|
+
All front-end code is written in [TypeScript](https://typescript-eslint.io), with
|
90
|
+
[React](https://react.dev) set up and ready-to-go in the [Webpack](https://webpack.js.org) pipeline,
|
91
|
+
if you're into that kind of thing.
|
92
|
+
|
93
|
+
### Holding things together
|
94
|
+
|
95
|
+
- Uses [UV](https://github.com/astral-sh/uv) and
|
96
|
+
[pyproject.toml](https://packaging.python.org/en/latest/specifications/pyproject-toml/)
|
97
|
+
exclusively for Python project management
|
98
|
+
- [Just](https://just.systems) as a task runner, with over 60 recipes (at last count)
|
99
|
+
- [OpenTofu](https://opentofu.org) (a fork of [Terraform](https://www.terraform.io)) and
|
100
|
+
[cloud-init](https://cloud-init.io) for all DevOps & rapid deployment
|
101
|
+
- [Docker](https://www.docker.com) and [Docker Compose](https://docs.docker.com/compose/) for local
|
102
|
+
development
|
@@ -1,5 +1,5 @@
|
|
1
1
|
LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
|
2
|
-
README.md,sha256=
|
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
|
@@ -67,7 +67,7 @@ picata/templatetags/menu_tags.py,sha256=QBv2HNA-phOedijP2YErBkO067oHZUD8Bh80SaGw
|
|
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.
|
71
|
-
picata-0.0.
|
72
|
-
picata-0.0.
|
73
|
-
picata-0.0.
|
70
|
+
picata-0.0.3.dist-info/METADATA,sha256=zs5razB4JggccKL9khkUsHAqauD_YaFh-a7t0IkY6Fw,5124
|
71
|
+
picata-0.0.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
72
|
+
picata-0.0.3.dist-info/licenses/LICENSE.md,sha256=Bv8sMyZI5NI6DMrfiAvCwIFRLSfJkimLF2KVcUMteKU,1103
|
73
|
+
picata-0.0.3.dist-info/RECORD,,
|
picata-0.0.2.dist-info/METADATA
DELETED
@@ -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
|
File without changes
|