setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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.8",
  22. "Programming Language :: Python :: 3.9",
  23. "Programming Language :: Python :: 3.10",
  24. "Topic :: Games/Entertainment",
  25. "Topic :: Utilities",
  26. ],
  27. entry_points={"console_scripts": ["tooncher = tooncher._cli:main"]},
  28. # >=3.6 for f-strings, var type hints & enforcing kwargs with *
  29. # >=3.7 for dataclasses
  30. # python<3.8 untested
  31. python_requires=">=3.8",
  32. # pipeline tests againsts pyyaml v6.0.1
  33. install_requires=["pyyaml<7"],
  34. setup_requires=["setuptools_scm"],
  35. tests_require=["pytest"],
  36. )