25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

setup.py 763 B

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']})