| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [bumpversion]
- current_version = 0.1.1
- commit = True
- tag = True
- allow_dirty = True
- [metadata]
- name = pydantic_form
- author = theenglishway
- author_email = me@theenglishway.eu
- version = attr: pydantic_form.__version__
- description = WTForms-based form with Pydantic backend
- long_description = file: README.rst, CHANGELOG.rst
- license = BSD 3-Clause License
- classifiers =
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.7
- url = https://code.theenglishway.eu/theenglishway-corp/pydantic_form/
- [options]
- zip_safe = False
- include_package_data = True
- packages = find:
- install_requires =
- pydantic
- wtforms
- [options.packages.find]
- exclude =
- tests
- tests.*
- [bumpversion:file:pydantic_form/__init__.py]
- search = __version__ = '{current_version}'
- replace = __version__ = '{new_version}'
- [tool:pytest]
- filterwarnings =
- error
- ignore::DeprecationWarning
- [coverage:run]
- branch = True
- source = pydantic_form, tests
- [coverage:report]
- precision = 2
- [coverage:paths]
- paths =
- .
- /tmp/build/*/source/
|