~rick-rickspencer3/+junk/webcam

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Rick Spencer
  • Date: 2010-04-27 16:14:52 UTC
  • Revision ID: rick.spencer@canonical.com-20100427161452-7oca61wr8kza3i5i
refactored web cam control into a widget, created video_frame_rate property

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
3
### BEGIN LICENSE
4
 
# This file is in the public domain
 
4
# Copyright (C) 2010 Rick Spencer <rick.spencer@canonical.com>
 
5
# This program is free software: you can redistribute it and/or modify it 
 
6
# under the terms of the GNU General Public License version 3, as published 
 
7
# by the Free Software Foundation.
 
8
 
9
# This program is distributed in the hope that it will be useful, but 
 
10
# WITHOUT ANY WARRANTY; without even the implied warranties of 
 
11
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
12
# PURPOSE.  See the GNU General Public License for more details.
 
13
 
14
# You should have received a copy of the GNU General Public License along 
 
15
# with this program.  If not, see <http://www.gnu.org/licenses/>.
5
16
### END LICENSE
6
17
 
7
18
###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ######################
77
88
 
78
89
DistUtilsExtra.auto.setup(
79
90
    name='gstreamer-webcam',
80
 
    version='0.1',
81
 
    #license='GPL-3',
82
 
    #author='Your Name',
83
 
    #author_email='email@ubuntu.com',
84
 
    #description='UI for managing …',
85
 
    #long_description='Here a longer description',
 
91
    version='0.1-public2',
 
92
    license='GPL-3',
 
93
    author='Rick Spencer',
 
94
    author_email='rick.spencer@canonical.com',
 
95
    description='Simple Window for Display Web Cam Output',
 
96
    long_description='Simple Window for Display Web Cam Output',
86
97
    #url='https://launchpad.net/gstreamer-webcam',
87
98
    cmdclass={'install': InstallAndUpdateDataDirectory}
88
99
    )