| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- [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 =
- Cerberus
- Click
- colorama
- PyYaml
- termcolor
- TinyDb
- [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/
|