pyproject.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. [project]
  2. name = "flowsint-api"
  3. version = "1.2.8"
  4. description = "API server for flowsint"
  5. license = "Apache-2.0"
  6. authors = [{ name = "dextmorgn", email = "contact@flowsint.io" }]
  7. requires-python = ">=3.12,<4.0"
  8. dependencies = [
  9. "flowsint-core",
  10. "flowsint-types",
  11. "flowsint-enrichers",
  12. "fastapi[standard]>=0.115.0,<0.116.0",
  13. "uvicorn>=0.32.0,<0.33.0",
  14. "redis>=5.0,<6.0",
  15. "celery>=5.3,<6.0",
  16. "python-dotenv>=1.0,<2.0",
  17. "python-jose[cryptography]>=3.4,<4.0",
  18. "requests>=2.31,<3.0",
  19. "pydantic>=2.0,<3.0",
  20. "neo4j>=5.0,<6.0",
  21. "sqlalchemy>=2.0,<3.0",
  22. "psycopg2-binary>=2.9,<3.0",
  23. "asyncpg>=0.30,<0.31",
  24. "alembic==1.13.0",
  25. "passlib[bcrypt]>=1.7,<2.0",
  26. "bcrypt>=4.0.0,<5.0.0",
  27. "sse-starlette>=1.8,<2.0",
  28. "networkx>=2.6.3,<3.0.0",
  29. "email-validator>=2.2.0,<3.0.0",
  30. "mistralai>=1.9.3,<2.0.0",
  31. "python-multipart>=0.0.20,<0.0.21",
  32. "openpyxl>=3.1.2,<4.0.0",
  33. "jsonschema>=4.25.1,<5.0.0",
  34. ]
  35. [dependency-groups]
  36. dev = [
  37. "black>=25.0,<26.0",
  38. "isort>=6.0,<7.0",
  39. "flake8>=7.0,<8.0",
  40. "mypy>=1.17,<2.0",
  41. ]
  42. [build-system]
  43. requires = ["hatchling"]
  44. build-backend = "hatchling.build"
  45. [tool.hatch.build.targets.wheel]
  46. packages = ["app"]
  47. [tool.uv.sources]
  48. flowsint-core = { workspace = true }
  49. flowsint-types = { workspace = true }
  50. flowsint-enrichers = { workspace = true }
  51. [tool.black]
  52. line-length = 88
  53. target-version = ['py311']
  54. [tool.isort]
  55. profile = "black"
  56. multi_line_output = 3
  57. [tool.mypy]
  58. python_version = "3.11"
  59. warn_return_any = true
  60. warn_unused_configs = true
  61. disallow_untyped_defs = true