mirror of https://github.com/BOINC/boinc.git
12 lines
278 B
Python
12 lines
278 B
Python
|
#! /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']
|
||
|
)
|