setup.py 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Ducker - search with DuckDuckGo from the command line
  2. # Copyright (C) 2016 Jorge Maldonado Ventura
  3. # This program is free software: you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation, either version 3 of the License, or
  6. # (at your option) any later version.
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. # You should have received a copy of the GNU General Public License
  12. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. from setuptools import find_packages, setup
  14. setup(
  15. name='ducker',
  16. version='0.1.3',
  17. author='Jorge Maldonado Ventura',
  18. author_email='jorgesumle@freakspot.net',
  19. description='Program that lets you search with DuckDuckGo from the command line.',
  20. entry_points={
  21. 'console_scripts': [
  22. 'ducker=ducker:main',
  23. 'duck=ducker:main'
  24. ],
  25. },
  26. license='GNU General Public License v3 (GPLv3)',
  27. keywords='CLI DuckDuckGo search terminal',
  28. url='https://notabug.org/jorgesumle/ducker',
  29. packages=find_packages(),
  30. classifiers=[
  31. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  32. 'Programming Language :: Python',
  33. 'Programming Language :: Python :: 2',
  34. 'Programming Language :: Python :: 2.6',
  35. 'Programming Language :: Python :: 2.7',
  36. 'Programming Language :: Python :: 3',
  37. 'Programming Language :: Python :: 3.3',
  38. 'Programming Language :: Python :: 3.4',
  39. 'Programming Language :: Python :: 3.5',
  40. ],
  41. )