File: setup.py

package info (click to toggle)
liggghts 3.0.3%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 106,076 kB
  • ctags: 34,406
  • sloc: cpp: 363,723; python: 21,138; ansic: 9,146; perl: 3,687; sh: 2,841; fortran: 2,802; xml: 788; makefile: 485; objc: 238; lisp: 169; f90: 145; csh: 16; awk: 14
file content (12 lines) | stat: -rwxr-xr-x 328 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

# To build do: python setup.py build_ext --inplace

ext_modules = [Extension("lmp2radii",["lmp2radii.pyx"])]
setup(
    name = 'lmp2radii',
    cmdclass = {'build_ext': build_ext},
    ext_modules = ext_modules
)