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 /pyproject.toml | |
| parent | efee2a4a4a973c7d2d8b42525069df01b2797271 (diff) | |
| download | ustayml-71e7d6516608486f67afad5aad1f7b7f9a45886f.tar.gz ustayml-71e7d6516608486f67afad5aad1f7b7f9a45886f.tar.bz2 ustayml-71e7d6516608486f67afad5aad1f7b7f9a45886f.zip | |
Make project installable
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 11 |
1 files changed, 11 insertions, 0 deletions
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 |
