setup.py 678 B

123456789101112131415161718192021222324
  1. from setuptools import setup
  2. setup(
  3. name='offpunk',
  4. version='1.4',
  5. description="Offline-First Gemini/Web/Gopher/RSS reader and browser",
  6. author="Ploum",
  7. author_email="offpunk@ploum.eu",
  8. url='https://notabug.org/ploum/offpunk',
  9. classifiers=[
  10. 'License :: OSI Approved :: BSD License',
  11. 'Programming Language :: Python :: 3 :: Only',
  12. 'Topic :: Communications',
  13. 'Intended Audience :: End Users/Desktop',
  14. 'Environment :: Console',
  15. 'Development Status :: 4 - Beta',
  16. ],
  17. py_modules = ["offpunk"],
  18. entry_points={
  19. "console_scripts": ["offpunk=offpunk:main"]
  20. },
  21. install_requires=[],
  22. )