forked from nasa/UQPCE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.08 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
import sys
from distutils.core import setup
from setuptools import find_packages
setup(name='uqpce',
version='1.0.0',
description="Uncertaintity Quantification",
long_description="""\
""",
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache 2.0',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
keywords='',
author='Joanna Schmidt and Ben Phillips',
author_email='benjamin.d.phillips@nasa.gov',
packages=find_packages(), # look at all the __init__.py files and load them as packages
include_package_data=True ,
install_requires=[
'pyyaml',
'sympy',
'mpi4py',
'openmdao',
'numpy>=1.9.2',
'scipy',
'pep8',
'parameterized',
],
)