setup.py 522 B

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