setup.py 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. import pathlib
  2. import setuptools
  3. setuptools.setup(
  4. name="tooncher",
  5. use_scm_version=True,
  6. packages=setuptools.find_packages(),
  7. description="automates toontown rewritten's login process",
  8. long_description=pathlib.Path(__file__).parent.joinpath("README.md").read_text(),
  9. long_description_content_type="text/markdown",
  10. author="Fabian Peter Hammerle",
  11. author_email="fabian.hammerle@gmail.com",
  12. url="https://github.com/fphammerle/tooncher",
  13. keywords=["game", "launcher", "toontown rewritten", "ttr"],
  14. classifiers=[
  15. "Development Status :: 4 - Beta",
  16. "Intended Audience :: End Users/Desktop",
  17. "License :: OSI Approved :: MIT License",
  18. "Operating System :: MacOS :: MacOS X",
  19. "Operating System :: POSIX :: Linux",
  20. # .github/workflows/python.yml
  21. "Programming Language :: Python :: 3.6",
  22. "Programming Language :: Python :: 3.7",
  23. "Programming Language :: Python :: 3.8",
  24. "Programming Language :: Python :: 3.9",
  25. "Topic :: Games/Entertainment",
  26. "Topic :: Utilities",
  27. ],
  28. entry_points={"console_scripts": ["tooncher = tooncher._cli:main"]},
  29. # f-strings, var type hints & enforce kwargs with *
  30. python_requires=">=3.6",
  31. # pipeline tests againsts pyyaml<5.4
  32. install_requires=["pyyaml<6"],
  33. setup_requires=["setuptools_scm"],
  34. tests_require=["pytest"],
  35. )