setup.py 617 B

1234567891011121314151617181920
  1. import glob
  2. import setuptools
  3. setuptools.setup(
  4. name="tooncher",
  5. use_scm_version=True,
  6. packages=["tooncher"],
  7. description="automates toontown rewritten's login process",
  8. author="Fabian Peter Hammerle",
  9. author_email="fabian.hammerle@gmail.com",
  10. url="https://github.com/fphammerle/tooncher",
  11. download_url="https://github.com/fphammerle/tooncher/tarball/0.3.1",
  12. keywords=["game", "launcher", "toontown rewritten", "ttr"],
  13. classifiers=[],
  14. scripts=glob.glob("scripts/*"),
  15. install_requires=["pyyaml"],
  16. setup_requires=["setuptools_scm"],
  17. tests_require=["pytest"],
  18. )