This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 494 B View raw
1[tool.poetry] 2name = "shapemaker-flstudio-adapter" 3packages = [{ include = "adapters/flstudio", from = "." }] 4version = "0.1.0" 5description = "" 6authors = ["Ewen Le Bihan <hey@ewen.works>"] 7readme = "README.md" 8 9[tool.poetry.dependencies] 10python = "^3.14.3, <3.15" 11flpinspect = "^0.1.0" 12rich = "^14.3.2" 13docopt = "^0.6.2" 14pyflp = "^2.2.1" 15 16[tool.poetry.scripts] 17flp_to_json = "adapters.flstudio.adapter:main" 18 19[build-system] 20requires = ["poetry-core"] 21build-backend = "poetry.core.masonry.api"