forked from strinking/python-duckduckgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1020 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
25
26
27
28
from setuptools import setup
with open('duckduckgo/VERSION') as f:
version = f.read().strip()
with open('README.rst') as f:
long_description = f.read()
setup(name='duckduckgo-async',
version=version,
py_modules=['duckduckgo'],
description='Library for querying the DuckDuckGo API',
author='Ammon Smith',
author_email='[email protected]',
license='BSD',
url='http://github.com/strinking/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']},
install_requires=['aiohttp', 'ratelimit']
)