pyproject.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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"]
  14. dynamic = ["version"]
  15. [project.optional-dependencies]
  16. test = [
  17. "pytest",
  18. "pytest-cov"
  19. ]
  20. dramatiq = ["dramatiq"]
  21. fastapi = ["fastapi"]
  22. auth = ["jwt"]
  23. fluentbit = ["fluentbit"]
  24. sql = ["sqlalchemy==2.*"]
  25. [project.urls]
  26. homepage = "https://github.com/nens/clean-python"
  27. [project.scripts]
  28. run-clean-python = "clean_python.scripts:main"
  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"