~statik/magicicada-gui/add-license

« back to all changes in this revision

Viewing changes to magicicada/magicicadaconfig.py

  • Committer: Elliot Murphy
  • Date: 2010-06-04 21:23:31 UTC
  • Revision ID: elliot@elliotmurphy.com-20100604212331-klm9ryhms7zpf93d
commit before release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# -*- coding: utf-8 -*-
2
2
### BEGIN LICENSE
3
 
# This file is in the public domain
 
3
# Copyright (C) 2010 Natalia Bidart <natalia.bidart@gmail.com>
 
4
# Copyright (C) 2010 Facundo Batista <facundo@canonical.com>
 
5
 
6
# This program is free software: you can redistribute it and/or modify it 
 
7
# under the terms of the GNU General Public License version 3, as published 
 
8
# by the Free Software Foundation.
 
9
 
10
# This program is distributed in the hope that it will be useful, but 
 
11
# WITHOUT ANY WARRANTY; without even the implied warranties of 
 
12
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR 
 
13
# PURPOSE.  See the GNU General Public License for more details.
 
14
 
15
# You should have received a copy of the GNU General Public License along 
 
16
# with this program.  If not, see <http://www.gnu.org/licenses/>.
4
17
### END LICENSE
5
18
 
6
19
# THIS IS Magicicada CONFIGURATION FILE
17
30
# Where your project will look for your data (for instance, images and ui
18
31
# files). By default, this is ../data, relative your trunk layout
19
32
__magicicada_data_directory__ = '../data/'
20
 
__license__ = ''
 
33
__license__ = 'GPL-3'
21
34
 
22
35
import os
23
36