| 123456789101112131415161718192021 | #!/usr/bin/env python3from setuptools import setupimport globsetup(    name="tooncher",    packages=["tooncher"],    version="0.4.0",    description="automates toontown rewritten's login process",    author="Fabian Peter Hammerle",    author_email="fabian.hammerle@gmail.com",    url="https://github.com/fphammerle/tooncher",    download_url="https://github.com/fphammerle/tooncher/tarball/0.3.1",    keywords=["game", "launcher", "toontown rewritten", "ttr"],    classifiers=[],    scripts=glob.glob("scripts/*"),    install_requires=["pyyaml"],    tests_require=["pytest"],)
 |