setup.cfg 434 B

12345678910111213141516171819202122232425262728
  1. [bumpversion]
  2. current_version = 24.0.2
  3. commit = True
  4. tag = True
  5. [egg_info]
  6. tag_build =
  7. tag_date = 0
  8. tag_svn_revision = 0
  9. [aliases]
  10. clean_egg_info = egg_info -RDb ''
  11. release = clean_egg_info sdist bdist_wheel
  12. source = register sdist binary
  13. binary = bdist_egg upload --show-response
  14. test = pytest
  15. [upload]
  16. repository = https://upload.pypi.io/legacy/
  17. [sdist]
  18. formats = gztar zip
  19. [wheel]
  20. universal = 1
  21. [bumpversion:file:setup.py]