-
Notifications
You must be signed in to change notification settings - Fork 72
/
setup.py
24 lines (22 loc) · 915 Bytes
/
setup.py
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='duckduckgo',
version=__version__,
py_modules=['duckduckgo'],
description='Library for querying the Duck Duck Go API',
author='Michael Stephens',
author_email='me@mikej.st',
license='BSD',
url='http://github.com/mikejs/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']},
)