pyproject.toml 700 B

1234567891011121314151617181920212223242526272829
  1. [project]
  2. name = "flowsint"
  3. version = "1.2.8"
  4. description = "Flowsint multi-module project"
  5. authors = [{ name = "dextmorgn", email = "contact@flowsint.io" }]
  6. requires-python = ">=3.12,<4.0"
  7. dependencies = [
  8. "flowsint-core",
  9. "flowsint-types",
  10. "flowsint-enrichers",
  11. "flowsint-api",
  12. "pydantic[email]>=2.11.7,<3.0.0",
  13. "python-multipart>=0.0.20,<0.0.21",
  14. "docker>=7.1.0,<8.0.0",
  15. ]
  16. [tool.uv.workspace]
  17. members = [
  18. "flowsint-api",
  19. "flowsint-core",
  20. "flowsint-enrichers",
  21. "flowsint-types",
  22. ]
  23. [tool.uv.sources]
  24. flowsint-core = { workspace = true }
  25. flowsint-types = { workspace = true }
  26. flowsint-enrichers = { workspace = true }
  27. flowsint-api = { workspace = true }