-
Notifications
You must be signed in to change notification settings - Fork 67
/
setup.py
29 lines (22 loc) · 879 Bytes
/
setup.py
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
from distutils.core import setup, Extension
import platform
# original version
VERSION="0.5"
# get current version
with open('brenda/version.py') as f:
exec(f.read())
ext_modules = []
if platform.system() == 'Linux':
ext_modules = [ Extension("paracurl", ["paracurl/paracurl.c"],
libraries=['curl']) ]
setup(name = "Brenda",
version = VERSION,
packages = [ 'brenda' ],
scripts = [ 'brenda-work', 'brenda-tool', 'brenda-run', 'brenda-node', 'brenda-ebs' ],
ext_modules = ext_modules,
data_files=[('brenda/task-scripts', ['task-scripts/frame', 'task-scripts/subframe']),
('brenda/doc', ['README.md', 'doc/brenda-talk-blendercon-2013.pdf'])],
author = "James Yonan",
author_email = "[email protected]",
description = "Blender render farm tool for Amazon Web Services",
)