pyproject.toml
| 1 | [build-system] |
| 2 | requires = ["setuptools>=68", "wheel"] |
| 3 | build-backend = "setuptools.build_meta" |
| 4 | |
| 5 | [project] |
| 6 | name = "locateanything-la-flash" |
| 7 | version = "0.1.0" |
| 8 | description = "LocateAnything batch utils with LA Flash inference backend." |
| 9 | requires-python = ">=3.10" |
| 10 | dependencies = [ |
| 11 | "numpy", |
| 12 | "pillow", |
| 13 | "torch", |
| 14 | "transformers", |
| 15 | ] |
| 16 | |
| 17 | [tool.setuptools] |
| 18 | packages = ["batch_utils", "kernel_utils"] |
| 19 | |