-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
24 lines (22 loc) · 833 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
#!/usr/bin/env python
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext
import numpy
extensions = [
Extension("ace", ["MCNPtools/ace.pyx"],
include_dirs=[numpy.get_include()])
]
setup(name='MCNPtools',
version='0.1',
description='Python scripts that are useful analyzing MCNP results and creating some ww for inputs in new runs.',
author='Ryan M. Bergmann',
author_email='[email protected]',
url='https://github.com/sellitforcache/MCNPtools',
packages=['MCNPtools'], # include all packages under src
cmdclass = {'build_ext': build_ext},
include_dirs = [numpy.get_include()],
ext_modules = extensions,
scripts=['MCNPtools/convert2singlefile.py','MCNPtools/'],
license="BSD3",
)