forked from OP-DSL/OPS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 728 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from distutils.core import setup
setup(name='ops',
version='dev',
description='OPS is an API with associated libraries and preprocessors to generate parallel executables for applications on mulit-block structured meshes.',
author='Gihan Mudalige, Istvan Reguly, Mike Giles, and others',
url='https://op-dsl.github.io/',
packages=['ops_translator', 'ops_translator.c', 'ops_translator.fortran'],
scripts=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Code Generators',
]
)