from setuptools import setup

with open('README.md') as f:
    readme = f.read()

setup(
    name='duckpy',
    version='3.2.0',

    packages=['duckpy', 'duckpy.aio'],
    install_requires=['beautifulsoup4>=4.9.1', 'httpx[http2]>=0.14,<0.19'],

    url='https://github.com/AmanoTeam/duckpy',
    python_requires='>=3.6',

    author='Amano Team',
    author_email='contact@amanoteam.com',

    license='MIT',

    description='A simple module for searching on DuckDuckGo',
    long_description=readme,
    long_description_content_type='text/markdown'
)
