setup.cfg 987 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. [metadata]
  2. name = fastapi-note
  3. # Version needs regex in setup.py.
  4. url = https://github.com/jianboy/flask-note
  5. license = MIT
  6. author = lyq
  7. author_email = liuyuqi.gov@msn.cn
  8. maintainer = lyq
  9. maintainer_email = liuyuqi.gov@msn.cn
  10. description = fastapi cms
  11. [options]
  12. packages = find:
  13. package_dir = = src
  14. include_package_data = true
  15. python_requires = >= 3.8
  16. # Dependencies are in setup.py for GitHub's dependency graph.
  17. [options.packages.find]
  18. where = apps
  19. [tool:pytest]
  20. testpaths = tests
  21. [flake8]
  22. # B = bugbear
  23. # E = pycodestyle errors
  24. # F = flake8 pyflakes
  25. # W = pycodestyle warnings
  26. # B9 = bugbear opinions
  27. # ISC = implicit-str-concat
  28. select = B, E, F, W, B9, ISC
  29. ignore =
  30. # slice notation whitespace, invalid
  31. E203
  32. # import at top, too many circular import fixes
  33. E402
  34. # line length, handled by bugbear B950
  35. E501
  36. # bare except, handled by bugbear B001
  37. E722
  38. # bin op line break, invalid
  39. W503
  40. # up to 88 allowed by bugbear B950
  41. max-line-length = 80