pyproject.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [project]
  2. name = "clean-python"
  3. description = "Clean architecture in Python"
  4. authors = [
  5. {name = "Nelen & Schuurmans", email = "info@nelen-schuurmans.nl"},
  6. ]
  7. readme = "README.md"
  8. license = {text = "MIT"}
  9. # Get classifier strings from http://www.python.org/pypi?%3Aaction=list_classifiers
  10. classifiers = ["Programming Language :: Python"]
  11. keywords = []
  12. requires-python = ">=3.7"
  13. dependencies = ["pydantic==1.*", "inject", "asgiref", "blinker"]
  14. dynamic = ["version"]
  15. [project.optional-dependencies]
  16. test = [
  17. "pytest",
  18. "pytest-cov",
  19. "pytest-asyncio"
  20. ]
  21. dramatiq = ["dramatiq"]
  22. fastapi = ["fastapi"]
  23. auth = ["pyjwt[crypto]==2.6.0"]
  24. celery = ["pika"]
  25. fluentbit = ["fluent-logger"]
  26. sql = ["sqlalchemy==2.*"]
  27. [project.urls]
  28. homepage = "https://github.com/nens/clean-python"
  29. [tool.setuptools]
  30. zip-safe = false
  31. [tool.setuptools.packages.find]
  32. include = ["clean_python*"]
  33. # package names should match these glob patterns (["*"] by default)
  34. [tool.setuptools.dynamic]
  35. version = {attr = "clean_python.__version__"}
  36. [tool.isort]
  37. profile = "black"
  38. force_alphabetical_sort_within_sections = true
  39. force_single_line = true
  40. [tool.pytest.ini_options]
  41. norecursedirs=".venv data doc etc *.egg-info misc var build lib include"
  42. python_files = "test_*.py"
  43. testpaths = "clean_python"