setup.py 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. # systemctl-mqtt - MQTT client triggering & reporting shutdown on systemd-based systems
  2. #
  3. # Copyright (C) 2020 Fabian Peter Hammerle <fabian@hammerle.me>
  4. #
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. import pathlib
  18. import setuptools
  19. _REPO_URL = "https://github.com/fphammerle/systemctl-mqtt"
  20. setuptools.setup(
  21. name="systemctl-mqtt",
  22. use_scm_version={
  23. # > AssertionError: cant parse version docker/0.1.0-amd64
  24. # https://github.com/pypa/setuptools_scm/blob/master/src/setuptools_scm/git.py#L15
  25. "git_describe_command": "git describe --dirty --tags --long --match v*",
  26. },
  27. packages=setuptools.find_packages(),
  28. description="MQTT client triggering & reporting shutdown on systemd-based systems",
  29. long_description=pathlib.Path(__file__).parent.joinpath("README.md").read_text(),
  30. long_description_content_type="text/markdown",
  31. author="Fabian Peter Hammerle",
  32. author_email="fabian@hammerle.me",
  33. url=_REPO_URL,
  34. project_urls={"Changelog": _REPO_URL + "/blob/master/CHANGELOG.md"},
  35. license="GPLv3+",
  36. keywords=[
  37. "IoT",
  38. "automation",
  39. "home-assistant",
  40. "home-automation",
  41. "mqtt",
  42. "shutdown",
  43. "systemd",
  44. ],
  45. classifiers=[
  46. # https://pypi.org/classifiers/
  47. "Development Status :: 2 - Pre-Alpha",
  48. "Intended Audience :: End Users/Desktop",
  49. "Intended Audience :: System Administrators",
  50. "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
  51. "Operating System :: POSIX :: Linux",
  52. # .github/workflows/python.yml
  53. "Programming Language :: Python :: 3.5",
  54. "Programming Language :: Python :: 3.6",
  55. "Programming Language :: Python :: 3.7",
  56. "Programming Language :: Python :: 3.8",
  57. "Topic :: Home Automation",
  58. ],
  59. entry_points={"console_scripts": ["systemctl-mqtt = systemctl_mqtt:_main",]},
  60. # https://dbus.freedesktop.org/doc/dbus-python/news.html
  61. install_requires=["PyGObject<4", "dbus-python<2", "paho-mqtt<2"],
  62. setup_requires=["setuptools_scm"],
  63. tests_require=["pytest"],
  64. )