setup.py 1.1 KB

123456789101112131415161718192021222324252627282930
  1. import pathlib
  2. import setuptools
  3. setuptools.setup(
  4. name="rescriptoon",
  5. use_scm_version=True,
  6. packages=setuptools.find_packages(),
  7. description="Control one or two Toons in Toontown Rewritten via keyboard",
  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.me",
  12. url="https://git.hammerle.me/fphammerle/rescriptoon",
  13. license="GPLv3+",
  14. keywords=["control", "game", "keyboard", "toontown rewritten", "ttr"],
  15. classifiers=[
  16. "Development Status :: 4 - Beta",
  17. "Intended Audience :: End Users/Desktop",
  18. "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
  19. "Operating System :: POSIX :: Linux",
  20. "Programming Language :: Python :: 3",
  21. "Topic :: Games/Entertainment",
  22. "Topic :: Utilities",
  23. ],
  24. entry_points={"console_scripts": ["rescriptoon = rescriptoon._cli:main"]},
  25. install_requires=["xlib"],
  26. setup_requires=["setuptools_scm"],
  27. tests_require=["pytest"],
  28. )