forked from adafruit/pi_video_looper
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
11 lines (10 loc) · 650 Bytes
/
setup.py
File metadata and controls
11 lines (10 loc) · 650 Bytes
1
2
3
4
5
6
7
8
9
10
11
from setuptools import setup, find_packages
setup(name = 'Adafruit_Video_Looper',
version = '1.0.11',
author = 'Tony DiCola',
author_email = 'tdicola@adafruit.com',
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.',
license = 'GNU GPLv2',
url = 'https://github.com/adafruit/pi_video_looper',
install_requires = ['pyudev>=0.23.1', 'pygame', 'six>=1.16.0'],
packages = find_packages())