import setuptools
setuptools.setup(
name="DanDondata",
    version="0.0.10",
    author="Vu Tran",
    author_email="vntran@example.com",
    description="A small example package",
    url="https://github.com/pypa/example-project",
    packages=setuptools.find_packages(),
    classifiers=(
        "Programming Language :: Python :: 3",
        "License :: OSI Approved :: MIT License",
        "Operating System :: OS Independent",
    ),


)