Skip to content

Commit

Permalink
Merge pull request #88 from SURGroup/bugfix/ReadTheDocs
Browse files Browse the repository at this point in the history
Bugfix/read the docs
  • Loading branch information
dgiovanis authored Mar 25, 2021
2 parents 8b46f6a + e6e2942 commit 41221aa
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ python:
version: 3.7
install:
- method: pip
path: .
system_packages: true
path: docs
system_packages: true
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ steps:
cliProjectName: 'UQpy'
cliSources: '.'
extraProperties: |
sonar.exclusions=**/example/**, **/tests/**
sonar.exclusions=**/example/**, **/tests/**, **/docs/**
sonar.python.coverage.reportPaths=./coverage.xml
- script: |
Expand Down
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 41221aa

Please sign in to comment.