from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name="{package_name}",
    version="0.1.0",
    packages=find_packages(),
    install_requires=[
        # Add your dependencies here
    ],
    extras_require={{
        'dev': [
            'pytest',
            'pytest-cov',
            'flake8',
            'black',
        ],
    }},
    author="{author}",
    author_email="your.email@example.com",
    description="A short description of the package",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://github.com/{github_username}/{package_name}",
    classifiers=[
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ],
    python_requires='>=3.6',
    entry_points={{
        'console_scripts': [
            '{package_name}={sanitized_name}.__main__:main',
        ],
    }},
)