pyproject.toml 1.3 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==4.*", "asgiref", "blinker"]
  14. dynamic = ["version"]
  15. [project.optional-dependencies]
  16. test = [
  17. "pytest",
  18. "pytest-cov",
  19. "pytest-asyncio",
  20. "debugpy",
  21. ]
  22. dramatiq = ["dramatiq"]
  23. fastapi = ["fastapi"]
  24. auth = ["pyjwt[crypto]==2.6.0"]
  25. celery = ["pika"]
  26. fluentbit = ["fluent-logger"]
  27. sql = ["sqlalchemy==2.*", "asyncpg"]
  28. [project.urls]
  29. homepage = "https://github.com/nens/clean-python"
  30. [tool.setuptools]
  31. zip-safe = false
  32. [tool.setuptools.packages.find]
  33. include = ["clean_python*"]
  34. # package names should match these glob patterns (["*"] by default)
  35. [tool.setuptools.dynamic]
  36. version = {attr = "clean_python.__version__"}
  37. [tool.isort]
  38. profile = "black"
  39. force_alphabetical_sort_within_sections = true
  40. force_single_line = true
  41. [tool.pytest.ini_options]
  42. norecursedirs=".venv data doc etc *.egg-info misc var build lib include"
  43. python_files = "test_*.py"