setup.py 884 B

123456789101112131415161718192021222324252627282930
  1. """ python setup script """
  2. import setuptools
  3. setuptools.setup(
  4. name="acpi-backlight",
  5. use_scm_version=True,
  6. author="Fabian Peter Hammerle",
  7. author_email="fabian@hammerle.me",
  8. url="https://github.com/fphammerle/acpi-backlight",
  9. packages=["acpi_backlight"],
  10. entry_points={
  11. "console_scripts": [
  12. "acpi-backlight-eval=acpi_backlight:_main",
  13. ]
  14. },
  15. classifiers=[
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: POSIX :: Linux",
  18. # .github/workflows/python.yml
  19. "Programming Language :: Python :: 3.8",
  20. "Programming Language :: Python :: 3.9",
  21. "Programming Language :: Python :: 3.10",
  22. "Topic :: Utilities",
  23. ],
  24. python_requires=">=3.8", # <3.8 untested
  25. install_requires=[],
  26. setup_requires=["setuptools_scm"],
  27. tests_require=["pytest"],
  28. )