setup.py 436 B

1234567891011121314151617
  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. packages=['acpi_backlight'],
  9. setup_requires=['setuptools_scm'],
  10. classifiers=[
  11. "License :: OSI Approved :: MIT License",
  12. "Operating System :: POSIX :: Linux",
  13. "Programming Language :: Python :: 3",
  14. ],
  15. )