forked from SCIInstitute/UncertainSCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (47 loc) · 1.91 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='UncertainSCI',
version='0.2.2-b0',
author='UncertainSCI Developers',
author_email='[email protected]',
packages=find_packages(),
package_dir={'': '.'},
download_url=r'https://github.com/SCIInstitute/UncertainSCI',
description=r'A Non-invasive Uncertainty Quantification tool',
long_description= long_description,
long_description_content_type="text/markdown",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries",
"Operating System :: Android",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS"
],
license='MIT',
keywords='Uncertainty Quantification, Simulation',
url=r'https://sci.utah.edu/sci-software/simulation/uncertainsci.html',
install_requires=[
"matplotlib==3.1.3; python_version < '3.8'",
"matplotlib>=3.1.3; python_version >= '3.8'",
"numpy==1.15.2; python_version < '3.8'",
"numpy>=1.21.0; python_version >= '3.8'",
"scipy==1.4.1; python_version < '3.8'",
"scipy>=1.4.1; python_version >= '3.8'"
]
)