-
Notifications
You must be signed in to change notification settings - Fork 81
/
setup.py
executable file
·52 lines (50 loc) · 1.67 KB
/
setup.py
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
import sys
version = sys.argv[1]
del sys.argv[1]
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.rst").read_text()
setup(
name='UQpy',
version=version,
url='https://github.com/SURGroup/UQpy',
description="UQpy is a general purpose toolbox for Uncertainty Quantification",
long_description=long_description,
author="Michael D. Shields, Dimitris G. Giovanis, Audrey Olivier, Aakash Bangalore-Satish, Mohit Chauhan, "
"Lohit Vandanapu, Ketson R.M. dos Santos",
license='MIT',
platforms=["OSX", "Windows", "Linux"],
packages=find_packages("src"),
package_dir={"": "src"},
package_data={"": ["*.pdf"]},
python_requires='>3.9.0',
install_requires=[
"numpy", "scipy>=1.6.0", "matplotlib", "scikit-learn", 'fire',
"beartype==0.18.5",
],
extras_require={
'dev': [
'pytest == 8.2.0',
'pytest-cov == 5.0.0',
'pylint == 3.1.0',
'pytest-azurepipelines == 1.0.5',
'pytest-cov == 5.0.0',
'wheel == 0.43.0',
'twine == 5.0.0',
'sphinx_autodoc_typehints == 1.23.0',
'sphinx_rtd_theme == 1.2.0',
'sphinx_gallery == 0.13.0',
'sphinxcontrib_bibtex == 2.5.0',
'Sphinx==6.1.3',
]
},
classifiers=[
'Programming Language :: Python :: 3',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
],
)