setup.cfg 1021 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. [bumpversion]
  2. current_version = 0.1.0
  3. commit = True
  4. tag = True
  5. allow_dirty = True
  6. [metadata]
  7. name = Planner
  8. author = theenglishway
  9. author_email = me@theenglishway.eu
  10. version = attr: planner.__version__
  11. description = Plannet
  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/humanizen/
  18. [options]
  19. zip_safe = False
  20. include_package_data = True
  21. packages = find:
  22. install_requires =
  23. flask
  24. [options.packages.find]
  25. exclude =
  26. tests
  27. tests.*
  28. [options.entry_points]
  29. console_scripts =
  30. planner = planner.cli:main
  31. [bumpversion:file:planner/__init__.py]
  32. search = __version__ = '{current_version}'
  33. replace = __version__ = '{new_version}'
  34. [tool:pytest]
  35. filterwarnings =
  36. error
  37. ignore::DeprecationWarning
  38. [coverage:run]
  39. branch = True
  40. source = planner, tests
  41. [coverage:report]
  42. precision = 2
  43. [coverage:paths]
  44. paths =
  45. .
  46. /tmp/build/*/source/