File: setup.py

package info (click to toggle)
python-duckduckgo2 0.242%2Bgit20151019-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 64 kB
  • sloc: python: 141; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 929 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
from duckduckgo import __version__

long_description = open('README.rst').read()

setup(name='duckduckgo2',
      version=__version__,
      py_modules=['duckduckgo'],
      description='Library for querying the DuckDuckGo API',
      author='Michael Smith',
      author_email='crazedpsyc@duckduckgo.com',
      license='BSD',
      url='http://github.com/crazedpsyc/python-duckduckgo/',
      long_description=long_description,
      platforms=['any'],
      classifiers=["Development Status :: 4 - Beta",
                   "Intended Audience :: Developers",
                   "License :: OSI Approved :: BSD License",
                   "Operating System :: OS Independent",
                   "Programming Language :: Python",
                   "Topic :: Internet :: WWW/HTTP :: Indexing/Search",
                   ],
      entry_points={'console_scripts':['ddg = duckduckgo:main']},
      )