forked from SURGroup/UQpy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·28 lines (26 loc) · 970 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (26 loc) · 970 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='UQpy',
version="3.0.4",
url='https://github.com/SURGroup/UQpy',
description="UQpy is a general purpose toolbox for Uncertainty Quantification",
author="Michael D. Shields, Dimitris G. Giovanis, Audrey Olivier, Aakash Bangalore-Satish, Mohit Chauhan, "
"Lohit Vandanapu, Ketson R.M. dos Santos",
author_email="UQpy.info@gmail.com",
license='MIT',
platforms=["OSX", "Windows", "Linux"],
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"": ["*.pdf"]},
install_requires=[
"numpy", "scipy", "matplotlib", "scikit-learn", 'fire'
],
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
)