mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Move Python API into openmc/ directory and move Python scripts into scripts/
directory.
This commit is contained in:
parent
2f0e89508a
commit
498e07d0bf
39 changed files with 32 additions and 47 deletions
13
setup.py
Normal file
13
setup.py
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env python
|
||||
|
||||
import os
|
||||
from distutils.core import setup
|
||||
|
||||
setup(name='openmc',
|
||||
version='0.6.2',
|
||||
description='OpenMC Python API',
|
||||
author='Will Boyd',
|
||||
author_email='wbinventor@gmail.com',
|
||||
url='https://github.com/mit-crpg/openmc',
|
||||
packages=['openmc'],
|
||||
scripts=[os.path.join('scripts', f) for f in os.listdir('scripts')])
|
||||
Loading…
Add table
Add a link
Reference in a new issue