pyproject.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. [project]
  2. name = "flowsint-core"
  3. version = "1.2.8"
  4. description = "Core utilities and base classes for flowsint modules"
  5. authors = [{ name = "dextmorgn", email = "contact@flowsint.io" }]
  6. requires-python = ">=3.12,<4.0"
  7. dependencies = [
  8. "flowsint-enrichers",
  9. "pydantic[email]>=2.11.7,<3.0.0",
  10. "neo4j>=5.0,<6.0",
  11. "sqlalchemy>=2.0,<3.0",
  12. "psycopg2-binary>=2.9,<3.0",
  13. "asyncpg>=0.30,<0.31",
  14. "redis>=5.0,<6.0",
  15. "celery>=5.3,<6.0",
  16. "python-dotenv>=1.0,<2.0",
  17. "requests>=2.31,<3.0",
  18. "httpx>=0.28,<0.29",
  19. "networkx>=2.6.3,<3.0.0",
  20. "passlib[bcrypt]>=1.7,<2.0",
  21. "bcrypt>=4.0.0,<5.0.0",
  22. "python-jose[cryptography]>=3.3,<4.0",
  23. "sse-starlette>=1.8,<2.0",
  24. "alembic==1.13.0",
  25. "phonenumbers>=9.0.8,<10.0.0",
  26. "python-multipart>=0.0.20,<0.0.21",
  27. "docker>=7.1.0,<8.0.0",
  28. "pytest>=8.4.2,<9.0.0",
  29. "cryptography>=45.0.7,<46.0.0",
  30. "openpyxl>=3.1,<4.0",
  31. ]
  32. [dependency-groups]
  33. dev = [
  34. "pytest-asyncio>=0.21,<0.22",
  35. "pytest-httpx>=0.35,<0.36",
  36. "black>=25.0,<26.0",
  37. "isort>=6.0,<7.0",
  38. "flake8>=7.0,<8.0",
  39. "mypy>=1.17,<2.0",
  40. "factory-boy>=3.3,<4.0",
  41. ]
  42. [build-system]
  43. requires = ["hatchling"]
  44. build-backend = "hatchling.build"
  45. [tool.hatch.build.targets.wheel]
  46. packages = ["src/flowsint_core"]
  47. [tool.uv.sources]
  48. flowsint-enrichers = { workspace = true }
  49. [tool.black]
  50. line-length = 88
  51. target-version = ['py311']
  52. [tool.isort]
  53. profile = "black"
  54. multi_line_output = 3
  55. [tool.mypy]
  56. python_version = "3.11"
  57. warn_return_any = true
  58. warn_unused_configs = true
  59. disallow_untyped_defs = true