-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·25 lines (23 loc) · 959 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/env python2
# Installation script for Photostory
from distutils.core import setup
setup(name='Photostory',
version='1.0.1',
description='Photostory lets you use your webcam to photo yourself\
every day, then compile them into a video.',
author='Photostory Team',
author_email='photostory@lists.launchpad.net',
maintainer='Joel Auterson',
maintainer_email='joel.auterson@googlemail.com',
keywords=['photo', 'story', 'daily', 'picture', 'webcam', 'story',
'video'],
url='http://launchpad.net/photostory',
license='GNU GPL v3',
scripts=['photostory', 'photostory_reminder'],
data_files=[
('/etc/xdg/autostart/', ['photostory_reminder.desktop']),
('share/applications/', ['photostory.desktop']),
('share/icons/hicolor/scalable/apps', ['photostory.svg']),
],
requires=['gst', 'gtk2']
)