diff options
| author | Tim Keller <tjk@tjkeller.xyz> | 2025-12-09 22:16:48 -0600 |
|---|---|---|
| committer | Tim Keller <tjk@tjkeller.xyz> | 2025-12-09 22:16:57 -0600 |
| commit | 3e7fdfb6c8a50c59ac933f701526ad1815dded92 (patch) | |
| tree | d2c699ff93e23d0fe45845a4c2dc05d820ec317b /pyproject.toml | |
| parent | 39738b84e9164b0f2d01f22440548c4393160013 (diff) | |
| download | immich-frame-0.3.0.tar.xz immich-frame-0.3.0.zip | |
refactor codebase. Reorganize file structure. Replace webpack for vite. Setup setuptools for application. Move closer to distributable appv0.3.0
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..2b934b4 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,40 @@ +[build-system] +requires = ["setuptools>=65", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "immich-frame" +version = "0.2.0" +description = "A standalone Python application" +readme = "README.md" +authors = [ + { name = "Tim Keller", email = "tjk@tjkeller.xyz" } +] +requires-python = ">=3.10" +dependencies = [ + "flask", + "flask-cors", # DEBUG + "flask-socketio", + "numpy", + "pillow", + "pygame", + "pyopengl", + "requests", +] + +[project.scripts] +immich-frame = "server.__main__:main" + +[tool.setuptools] +package-dir = {"" = "src"} + +[tool.setuptools.packages.find] +where = ["src"] + +#[tool.pyinstaller] +#name = "immich-frame" +#entry-point = "src/server/__main__.py" +#noconfirm = true +#clean = true +#onefile = true +#console = true |
