Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dimtsap authored Mar 25, 2021
1 parent a06d939 commit de39848
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!/usr/bin/env python
from setuptools import setup, find_packages

setup(
name='UQpy',
version='3.0.0',
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="[email protected]",
license='MIT',
platforms=["OSX", "Windows", "Linux"],
packages=find_packages("src"),
package_dir={"..": "src"},
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
)

0 comments on commit de39848

Please sign in to comment.