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'] + )