Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

setup.py 669 B

12345678910111213
  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())