~jonobacon/acire/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Jono Bacon
  • Date: 2009-12-31 00:35:03 UTC
  • Revision ID: jono@ubuntu.com-20091231003503-1y1lwp0whpjwhwq9
First code for the repo.

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) 2009 Jono Bacon <jono@ubuntu.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) ######################
83
94
DistUtilsExtra.auto.setup(
84
95
    name='acire',
85
96
    version='0.1',
86
 
    #license='GPL v3',
87
 
    #author='Your Name',
88
 
    #author_email='email@ubuntu.com',
89
 
    #description='UI for managing …',
90
 
    #long_description='Here a longer description',
91
 
    #url='https://launchpad.net/acire',
 
97
    license='GPL-3',
 
98
    author='Jono Bacon',
 
99
    author_email='jono@ubuntu.com',
 
100
    description='Browse, run and play with Python code snippets quickly and easily.',
 
101
    long_description='Browse, run and play with Python code snippets quickly and easily.',
 
102
    url='https://launchpad.net/acire',
92
103
    cmdclass={'install': InstallAndUpdateDataDirectory}
93
104
    )
94
105