12345678910111213141516171819202122232425262728293031323334 |
- #!/usr/bin/env python
- from distutils.core import setup
- from searxqt.version import __version__
- setup(name='searx-qt',
- version=__version__,
- license='GPLv3',
- description=('Lightweight desktop application for Searx.'),
- author='CYBERDEViL',
- url='https://notabug.org/cyberdevil',
- packages=[
- 'searxqt',
- 'searxqt.widgets',
- 'searxqt.models',
- 'searxqt.views',
- 'searxqt.core'
- ],
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Environment :: X11 Applications :: Qt',
- 'Topic :: Internet',
- 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
- 'Topic :: Internet :: WWW/HTTP'
- ],
- scripts=[
- 'bin/searx-qt'
- ],
- data_files=[
- ('share/applications', ['share/searx-qt.desktop'])
- ])
|