PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/setup.py

http://github.com/mikejs/python-duckduckgo
Python | 24 lines | 22 code | 2 blank | 0 comment | 0 complexity | 0df5bb591275dcf72309a53b4218af8d MD5 | raw file
Possible License(s): BSD-3-Clause
  1. from setuptools import setup
  2. from duckduckgo import __version__
  3. long_description = open('README.rst').read()
  4. setup(name='duckduckgo',
  5. version=__version__,
  6. py_modules=['duckduckgo'],
  7. description='Library for querying the Duck Duck Go API',
  8. author='Michael Stephens',
  9. author_email='me@mikej.st',
  10. license='BSD',
  11. url='http://github.com/mikejs/python-duckduckgo/',
  12. long_description=long_description,
  13. platforms=['any'],
  14. classifiers=["Development Status :: 4 - Beta",
  15. "Intended Audience :: Developers",
  16. "License :: OSI Approved :: BSD License",
  17. "Operating System :: OS Independent",
  18. "Programming Language :: Python",
  19. "Topic :: Internet :: WWW/HTTP :: Indexing/Search",
  20. ],
  21. entry_points={'console_scripts':['ddg = duckduckgo:main']},
  22. )