diff options
| author | Mitsuo Tokumori <[email protected]> | 2023-10-29 06:17:53 -0500 |
|---|---|---|
| committer | Mitsuo Tokumori <[email protected]> | 2023-10-29 06:17:53 -0500 |
| commit | 71e7d6516608486f67afad5aad1f7b7f9a45886f (patch) | |
| tree | 195b4ce5119960749faa022c793f7653a06e5848 | |
| parent | efee2a4a4a973c7d2d8b42525069df01b2797271 (diff) | |
| download | ustayml-71e7d6516608486f67afad5aad1f7b7f9a45886f.tar.gz ustayml-71e7d6516608486f67afad5aad1f7b7f9a45886f.tar.bz2 ustayml-71e7d6516608486f67afad5aad1f7b7f9a45886f.zip | |
Make project installable
| -rw-r--r-- | README.md | 1 | ||||
| -rw-r--r-- | pyproject.toml | 11 |
2 files changed, 12 insertions, 0 deletions
@@ -18,6 +18,7 @@ flask --app flaskr run --debug * DB: https://sqlite.org/lang.html * [Jinja Template](https://jinja.palletsprojects.com/templates/) * [For loops](https://jinja.palletsprojects.com/en/3.1.x/templates/#for) +* [Python packaging tutorial](https://packaging.python.org/en/latest/tutorials/packaging-projects/) Concepts: diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..ab85115 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,11 @@ +[project] +name = "flaskr" +version = "1.0.0" +description = "The basic blog app built in the Flask tutorial." +dependencies = [ + "flask", +] + +[build-system] +requires = ["flit_core<4"] +build-backend = "flit_core.buildapi"
\ No newline at end of file |
