-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (22 loc) · 814 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (22 loc) · 814 Bytes
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
#!/usr/bin/env python
# $Id: setup.py 86 2007-11-12 22:11:40Z dwchin $
# Hacked from TableIO source
"""Build / install script for MCDose
See INSTALL for installation instructions.
"""
from distutils.core import setup, Extension
import sys, os
setup(name = 'egsnrc',
version = '0.1',
license = 'GPL',
author = 'David Chin',
author_email = 'david.w.h.chin@gmail.com',
maintainer = 'David Chin',
maintainer_email = 'david.w.h.chin@gmail.com',
description = 'Encapsulates 3ddose and egsphant files.',
url = 'http://www.hms.harvard.edu/', # required to make rpm
packages = ['egsnrc'],
ext_package='egsnrc',
ext_modules = [Extension('_mcdose', ['egsnrc/_mcdose.c']), \
Extension('_egsphant', ['egsnrc/_egsphant.c'])],
)