setup.py 492 B

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