| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- [bumpversion]
- current_version = 0.1.0
- commit = True
- tag = True
- allow_dirty = True
- [metadata]
- name = Planner
- author = theenglishway
- author_email = me@theenglishway.eu
- version = attr: planner.__version__
- description = Plannet
- 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/humanizen/
- [options]
- zip_safe = False
- include_package_data = True
- packages = find:
- install_requires =
- flask
- [options.packages.find]
- exclude =
- tests
- tests.*
- [options.entry_points]
- console_scripts =
- planner = planner.cli:main
- [bumpversion:file:planner/__init__.py]
- search = __version__ = '{current_version}'
- replace = __version__ = '{new_version}'
- [tool:pytest]
- filterwarnings =
- error
- ignore::DeprecationWarning
- [coverage:run]
- branch = True
- source = planner, tests
- [coverage:report]
- precision = 2
- [coverage:paths]
- paths =
- .
- /tmp/build/*/source/
|