setup.py 933 B

12345678910111213141516171819202122232425262728293031
  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.7",
  20. "Programming Language :: Python :: 3.8",
  21. "Programming Language :: Python :: 3.9",
  22. "Programming Language :: Python :: 3.10",
  23. "Topic :: Utilities",
  24. ],
  25. python_requires=">=3.7", # <3.7 untested
  26. install_requires=[],
  27. setup_requires=["setuptools_scm"],
  28. tests_require=["pytest"],
  29. )