pyproject.toml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 = []
  14. dynamic = ["version"]
  15. [project.optional-dependencies]
  16. test = [
  17. "pytest",
  18. "pytest-cov"
  19. ]
  20. [project.urls]
  21. homepage = "https://github.com/nens/clean-python"
  22. [project.scripts]
  23. run-clean-python = "clean_python.scripts:main"
  24. [tool.setuptools]
  25. zip-safe = false
  26. [tool.setuptools.packages.find]
  27. include = ["clean_python*"]
  28. # package names should match these glob patterns (["*"] by default)
  29. [tool.setuptools.dynamic]
  30. version = {attr = "clean_python.__version__"}
  31. [tool.isort]
  32. profile = "black"
  33. force_alphabetical_sort_within_sections = true
  34. force_single_line = true
  35. [tool.pytest.ini_options]
  36. norecursedirs=".venv data doc etc *.egg-info misc var build lib include"
  37. python_files = "test_*.py"
  38. testpaths = "clean_python"