forked from crazedpsyc/python-duckduckgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 929 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='duckduckgo2',
version=__version__,
py_modules=['duckduckgo'],
description='Library for querying the DuckDuckGo API',
author='Michael Smith',
author_email='[email protected]',
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']},
)