#!/usr/bin/env python3

import re
import os.path
import setuptools
import shutil

with open('ddgr', encoding='utf-8') as fp:
    version = re.search(r'_VERSION_ = \'(.*?)\'', fp.read()).group(1)

with open('README.md', encoding='utf-8') as f:
    long_description = f.read()

setuptools.setup(
    name='ddgr',
    version=version,
    url='https://github.com/jarun/ddgr',
    license='GPLv3',
    license_file='LICENSE',
    author='Arun Prakash Jana',
    author_email='engineerarun@gmail.com',
    description='DuckDuckGo from the terminal',
    long_description=long_description,
    long_description_content_type='text/markdown',
    python_requires='>=3.7',
    platforms=['any'],
    py_modules=['ddgr'],
    entry_points={
        'console_scripts': [
            'ddgr = ddgr:main',
        ],
    },
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        'Intended Audience :: Developers',
        'Intended Audience :: End Users/Desktop',
        'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 3',
        'Programming Language :: Python :: 3 :: Only',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3.10',
        'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
        'Topic :: Utilities',
    ],
)
