setup.py 840 B

12345678910111213141516171819202122232425262728293031323334
  1. #!/usr/bin/env python
  2. from distutils.core import setup
  3. from searxqt.version import __version__
  4. setup(name='searx-qt',
  5. version=__version__,
  6. license='GPLv3',
  7. description=('Lightweight desktop application for Searx.'),
  8. author='CYBERDEViL',
  9. url='https://notabug.org/cyberdevil',
  10. packages=[
  11. 'searxqt',
  12. 'searxqt.widgets',
  13. 'searxqt.models',
  14. 'searxqt.views',
  15. 'searxqt.core'
  16. ],
  17. classifiers=[
  18. 'Development Status :: 3 - Alpha',
  19. 'Environment :: X11 Applications :: Qt',
  20. 'Topic :: Internet',
  21. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  22. 'Topic :: Internet :: WWW/HTTP'
  23. ],
  24. scripts=[
  25. 'bin/searx-qt'
  26. ],
  27. data_files=[
  28. ('share/applications', ['share/searx-qt.desktop'])
  29. ])