setup.cfg 1020 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [bumpversion]
  2. current_version = 0.1.1
  3. commit = True
  4. tag = True
  5. allow_dirty = True
  6. [metadata]
  7. name = pydantic_form
  8. author = theenglishway
  9. author_email = me@theenglishway.eu
  10. version = attr: pydantic_form.__version__
  11. description = WTForms-based form with Pydantic backend
  12. long_description = file: README.rst, CHANGELOG.rst
  13. license = BSD 3-Clause License
  14. classifiers =
  15. Programming Language :: Python :: 3
  16. Programming Language :: Python :: 3.7
  17. url = https://code.theenglishway.eu/theenglishway-corp/pydantic_form/
  18. [options]
  19. zip_safe = False
  20. include_package_data = True
  21. packages = find:
  22. install_requires =
  23. pydantic
  24. wtforms
  25. [options.packages.find]
  26. exclude =
  27. tests
  28. tests.*
  29. [bumpversion:file:pydantic_form/__init__.py]
  30. search = __version__ = '{current_version}'
  31. replace = __version__ = '{new_version}'
  32. [tool:pytest]
  33. filterwarnings =
  34. error
  35. ignore::DeprecationWarning
  36. [coverage:run]
  37. branch = True
  38. source = pydantic_form, tests
  39. [coverage:report]
  40. precision = 2
  41. [coverage:paths]
  42. paths =
  43. .
  44. /tmp/build/*/source/