You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
463 B
13 lines
463 B
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
setup(name='exodus',
|
|
description='A python wrapper of some of the exodus library',
|
|
version='1.10',
|
|
author='Tim Shelton, Mike Veilleux, Dave Littlewood, Greg Sjaardema',
|
|
author_email='gsjaardema@gmail.com',
|
|
url='https://github.com/sandialabs/seacas',
|
|
py_modules=['exodus'],
|
|
license="BSD",
|
|
# extras = {'numpy'},
|
|
# python_requires='<3',
|
|
)
|
|
|