setup.py 940 B

1234567891011121314151617181920212223242526
  1. import setuptools
  2. setuptools.setup(
  3. name="tooncher",
  4. use_scm_version=True,
  5. packages=setuptools.find_packages(),
  6. description="automates toontown rewritten's login process",
  7. author="Fabian Peter Hammerle",
  8. author_email="fabian.hammerle@gmail.com",
  9. url="https://github.com/fphammerle/tooncher",
  10. keywords=["game", "launcher", "toontown rewritten", "ttr"],
  11. classifiers=[
  12. "Development Status :: 4 - Beta",
  13. "Intended Audience :: End Users/Desktop",
  14. "License :: OSI Approved :: MIT License",
  15. "Operating System :: MacOS :: MacOS X",
  16. "Operating System :: POSIX :: Linux",
  17. "Programming Language :: Python :: 3",
  18. "Topic :: Games/Entertainment",
  19. "Topic :: Utilities",
  20. ],
  21. entry_points={"console_scripts": ["tooncher = tooncher._cli:main"]},
  22. install_requires=["pyyaml"],
  23. setup_requires=["setuptools_scm"],
  24. tests_require=["pytest"],
  25. )