plain.dev 0.10.0__tar.gz → 0.11.0__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 (33) hide show
  1. {plain_dev-0.10.0 → plain_dev-0.11.0}/PKG-INFO +2 -1
  2. plain_dev-0.11.0/plain/dev/entrypoints.py +5 -0
  3. {plain_dev-0.10.0 → plain_dev-0.11.0}/pyproject.toml +6 -1
  4. {plain_dev-0.10.0 → plain_dev-0.11.0}/LICENSE +0 -0
  5. {plain_dev-0.10.0 → plain_dev-0.11.0}/README.md +0 -0
  6. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/README.md +0 -0
  7. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/__init__.py +0 -0
  8. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/cli.py +0 -0
  9. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/config.py +0 -0
  10. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/contribute/__init__.py +0 -0
  11. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/contribute/cli.py +0 -0
  12. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/db/__init__.py +0 -0
  13. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/db/cli.py +0 -0
  14. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/db/container.py +0 -0
  15. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/debug.py +0 -0
  16. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/default_settings.py +0 -0
  17. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/gunicorn_logging.json +0 -0
  18. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/mkcert.py +0 -0
  19. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/pid.py +0 -0
  20. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/poncho/__init__.py +0 -0
  21. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/poncho/color.py +0 -0
  22. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/poncho/compat.py +0 -0
  23. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/poncho/manager.py +0 -0
  24. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/poncho/printer.py +0 -0
  25. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/poncho/process.py +0 -0
  26. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/precommit/__init__.py +0 -0
  27. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/precommit/cli.py +0 -0
  28. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/requests.py +0 -0
  29. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/services.py +0 -0
  30. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/templates/dev/requests.html +0 -0
  31. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/urls.py +0 -0
  32. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/utils.py +0 -0
  33. {plain_dev-0.10.0 → plain_dev-0.11.0}/plain/dev/views.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: plain.dev
3
- Version: 0.10.0
3
+ Version: 0.11.0
4
4
  Summary: Local development tools for Plain.
5
5
  Home-page: https://plainframework.com
6
6
  License: BSD-3-Clause
@@ -17,6 +17,7 @@ Requires-Dist: debugpy (>=1.6.3,<2.0.0)
17
17
  Requires-Dist: gunicorn (>20)
18
18
  Requires-Dist: plain (<1.0.0)
19
19
  Requires-Dist: psycopg[binary] (>=3.2.2,<4.0.0)
20
+ Requires-Dist: python-dotenv (>=1.0.0,<2.0.0)
20
21
  Requires-Dist: requests (>=2.0.0)
21
22
  Project-URL: Documentation, https://plainframework.com/docs/
22
23
  Project-URL: Repository, https://github.com/dropseed/plain
@@ -0,0 +1,5 @@
1
+ from dotenv import load_dotenv
2
+
3
+
4
+ def load_dotenv_file():
5
+ load_dotenv(".env")
@@ -5,7 +5,7 @@ packages = [
5
5
  { include = "plain" },
6
6
  ]
7
7
 
8
- version = "0.10.0"
8
+ version = "0.11.0"
9
9
  description = "Local development tools for Plain."
10
10
  authors = ["Dave Gaeddert <dave.gaeddert@dropseed.dev>"]
11
11
  license = "BSD-3-Clause"
@@ -20,6 +20,9 @@ repository = "https://github.com/dropseed/plain"
20
20
  "pre-commit" = "plain.dev.precommit:cli"
21
21
  "contrib" = "plain.dev.contribute:cli"
22
22
 
23
+ [tool.poetry.plugins."plain.setup"]
24
+ "dev-dotenv" = "plain.dev.entrypoints:load_dotenv_file"
25
+
23
26
  [tool.poetry.dependencies]
24
27
  python = "^3.11"
25
28
 
@@ -28,6 +31,8 @@ plain = "<1.0.0"
28
31
  click = ">=8.0.0"
29
32
  debugpy = "^1.6.3"
30
33
 
34
+ python-dotenv = "^1.0.0"
35
+
31
36
  # For local runserver
32
37
  gunicorn = ">20"
33
38
 
File without changes
File without changes
File without changes
File without changes
File without changes