You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
641 B

  1. from setuptools import setup, find_packages
  2. setup(name = 'Adafruit_Video_Looper',
  3. version = '1.0.1',
  4. author = 'Tony DiCola',
  5. author_email = 'tdicola@adafruit.com',
  6. 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.',
  7. license = 'GNU GPLv2',
  8. url = 'https://git.notice.at/redplanet/pi_video_looper_gpio.git',
  9. install_requires = ['pyudev', 'wiringpi'],
  10. packages = find_packages())