pyproject.toml 1.3 KB

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