您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314
  1. from ez_setup import use_setuptools
  2. use_setuptools()
  3. from setuptools import setup, find_packages
  4. setup(name = 'Adafruit_Video_Looper',
  5. version = '1.0.0',
  6. author = 'Tony DiCola',
  7. author_email = 'tdicola@adafruit.com',
  8. description = 'Application to turn your Raspberry Pi into a dedicated looping video playback device, good for art installations, information displays, or just playing cat videos all day.',
  9. license = 'GNU GPLv2',
  10. url = 'https://github.com/adafruit/pi_video_looper',
  11. install_requires = ['pyudev'],
  12. packages = find_packages(),
  13. entry_points = {'console_scripts': ['video_looper = Adafruit_Video_Looper:main']})