pyproject.toml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. ]
  20. dramatiq = ["dramatiq"]
  21. fastapi = ["fastapi"]
  22. auth = ["pyjwt[crypto]==2.6.0"]
  23. celery = ["pika"]
  24. fluentbit = ["fluent-logger"]
  25. sql = ["sqlalchemy==2.*"]
  26. [project.urls]
  27. homepage = "https://github.com/nens/clean-python"
  28. [project.scripts]
  29. run-clean-python = "clean_python.scripts:main"
  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"
  44. testpaths = "clean_python"