3.1.3
by Josh Brown
Created a setup.py and install.diff. |
1 |
#!/usr/bin/env python
|
2 |
# Installation script for Photostory
|
|
3 |
||
4 |
from distutils.core import setup |
|
5 |
import os |
|
6 |
||
7 |
setup(name='Photostory', |
|
8 |
version='0.9', |
|
9 |
description='Photostory lets you use your webcam to photo yourself\ |
|
10 |
every day, then compile them into a video.', |
|
11 |
#long_description='''XXX''',
|
|
12 |
author='Photostory Team', |
|
13 |
#author_email='https://launchpad.net/~photostory-team/+contactuser',
|
|
14 |
maintainer='Joel Auterson', |
|
15 |
maintainer_email='joel.auterson@googlemail.com', |
|
16 |
keywords=['photo', 'story', 'daily', 'picture', 'webcam', 'story', |
|
17 |
'video'], |
|
18 |
url='http://launchpad.net/photostory', |
|
19 |
license='GNU GPL v3', |
|
16.1.1
by Josh Brown
Create data files `db` and `num` when program first runs. |
20 |
data_files=[ |
20
by Josh Brown
Put script in bin/ rather than share/bin/ |
21 |
('bin', ['photostory']), |
3.1.3
by Josh Brown
Created a setup.py and install.diff. |
22 |
('share/applications/', ['photostory.desktop']), |
16.1.2
by Josh Brown
Moved `photostory.svg` out of the `data` dir, then deleted `data` dir. |
23 |
('share/icons/hicolor/scalable/apps', ['photostory.svg']), |
3.1.3
by Josh Brown
Created a setup.py and install.diff. |
24 |
],
|
25 |
requires=['gst', 'gtk2'] |
|
26 |
)
|