1
0

setup.cfg 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. [metadata]
  2. name = blogit
  3. description = A quick and simple static site generator based on markdown and jinja2
  4. description-file = README.md
  5. author = Oz N Tiram
  6. author-email = nahumoz@gmail.com
  7. license = GPL-3.0-or-later
  8. home-page = https://github.com/oz123/blogit
  9. project_urls =
  10. Bug Tracker = https://github.com/oz123/blogit/issues
  11. Source Code = https://github.com/oz123/blogit
  12. Documentation = https://github.com/oz123/blogit/blob/dev/README.md
  13. classifier =
  14. Environment :: Console
  15. Environment :: Web Environment
  16. Intended Audience :: End Users/Desktop
  17. Intended Audience :: Developers
  18. License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
  19. Operating System :: OS Independent
  20. Programming Language :: Python
  21. Programming Language :: Python :: 3
  22. Programming Language :: Python :: 3.6
  23. Programming Language :: Python :: 3.7
  24. [entry_points]
  25. console_scripts =
  26. blogit = blogit.blogit:main
  27. [aliases]
  28. test = pytest
  29. [tool:pytest]
  30. addopts = -vv tests
  31. [build_manpage]
  32. output = blogit.1
  33. parser = blogit.blogit:get_parser