12345678910111213 |
- #!/usr/bin/env python
- from distutils.core import setup
- setup(name='searxpy',
- version='0.1',
- license='GPLv3',
- description=('Python modules for interacting with searx and'
- ' searx-stats2 instances.'),
- author='CYBERDEViL',
- url='https://notabug.org/CYBERDEViL/searxpy',
- packages=['searxpy'])
|