File: setup.py

package info (click to toggle)
pygpu 0.2.0a-629-1
  • links: PTS, VCS
  • area: contrib
  • in suites: lenny
  • size: 376 kB
  • ctags: 381
  • sloc: python: 1,839; makefile: 30
file content (13 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /usr/bin/env python

from distutils.core import setup

setup(
    name         = "pygpu",
    description  = "embedded language for programming GPU using Python",
    author       = "Calle Lejdfors",
    author_email = "calle.lejdfors@cs.lth.se",
    url          = "http://www.cs.lth.se/home/Calle_Lejdfors/pygpu/",
    version      = "0.2.0a-629",
    packages     = ["pygpu", "pygpu.backends", "pygpu.compiler", "pygpu.GPU", "pygpu.utils"]
    )