setup.py 982 B

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