setup.cfg 848 B

123456789101112131415161718192021222324252627282930313233
  1. [metadata]
  2. name = gemcall
  3. version = 0.9.2
  4. description = A library and CLI tool for making gemini requests
  5. long_description = file: README.md
  6. long_description_content_type = text/markdown
  7. home_page = https://notabug.org/tinyrabbit/gemcall
  8. author = Björn Wärmedal
  9. author_email = bjorn.warmedal@gmail.com
  10. license = MIT License
  11. classifiers =
  12. Development Status :: 4 - Beta
  13. Intended Audience :: End Users/Desktop
  14. License :: OSI Approved :: MIT License
  15. Operating System :: POSIX :: Linux
  16. Programming Language :: Python :: 3
  17. Topic :: Internet
  18. Topic :: Software Development :: Libraries
  19. Topic :: Utilities
  20. Typing :: Typed
  21. [options]
  22. packages = gemcall
  23. python_requires = >= 3.9
  24. setup_requires =
  25. setuptools >= 38.3.0
  26. install_requires =
  27. pycryptodome
  28. [options.entry_points]
  29. console_scripts =
  30. gemcall = gemcall.__main__:main