~photostory/photostory/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Turner
  • Date: 2010-11-10 22:33:52 UTC
  • Revision ID: finalfantasykid13@gmail.com-20101110223352-zvabh1uol1qpjxfw
-Fixed a GTK Warning at startup

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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',
 
20
      data_files=[
 
21
                  ('bin', ['photostory']),
 
22
                  ('share/applications/', ['photostory.desktop']),
 
23
                  ('share/icons/hicolor/scalable/apps', ['photostory.svg']),
 
24
                 ],
 
25
      requires=['gst', 'gtk2']
 
26
     )