From ac14777baebed44ee5e6738fe84f393c5ffb5217 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 11 Jun 2009 23:06:02 +0000 Subject: [PATCH] - forget to add file svn path=/trunk/boinc/; revision=18384 --- py/setup.py.in | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 py/setup.py.in diff --git a/py/setup.py.in b/py/setup.py.in new file mode 100644 index 0000000000..22fd6e45f1 --- /dev/null +++ b/py/setup.py.in @@ -0,0 +1,11 @@ +#! /usr/bin/env python + +from distutils.core import setup + +setup(name = 'Boinc', + version = '@PACKAGE_VERSION@', + description = 'Python API for BOINC', + url = 'http://boinc.berkeley.edu', + packages = ['Boinc'], + py_modules = ['boinc_path_config'] + )