1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# This program is part of GASP, a toolkit for newbie Python Programmers.
# Copyright (C) 2009, the GASP Development Team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Installer for the GASP Core Software."""
from setuptools import setup
setup(
name = 'gasp',
version = '0.3.4',
packages = ['gasp',
],
author = 'Jamie Boisture and James Hancock',
author_email = 'jamieboisture@gmail.com, jlhancock@gmail.com',
maintainer = 'Luke Faraone',
maintainer_email = 'luke@faraoane.cc',
description = 'GASP provides a simple, procedural graphics API for ' + \
'beginning students using Python',
license = 'GPLv3+',
keywords = 'gasp',
url = 'http://wiki.laptop.org/go/GASP',
download_url='https://launchpad.net/gasp-code/+download',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: X11 Applications :: GTK',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Education :: Computer Aided Instruction (CAI)',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',],
package_dir = {'gasp' : 'gasp'},
package_data = {'gasp': ['images/gasp.png']},
install_requires = [
'setuptools',
'pycairo >= 1.4',
'pygobject',
'pygtk >= 2.0',]
)
|