-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 1.05 KB
/
setup.py
File metadata and controls
22 lines (20 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="umbridge",
version="1.2.5",
author="UM-Bridge",
author_email="",
description="UM-Bridge (the UQ and Model Bridge) provides a unified interface for numerical models that is accessible from virtually any programming language or framework. It is primarily intended for coupling advanced models (e.g. simulations of complex physical processes) to advanced statistical or optimization methods.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["aiohttp", "requests", "asyncio"],
url="https://github.com/UM-Bridge/umbridge",
packages=setuptools.find_packages(),
classifiers=( # Classifiers help people find your
"Programming Language :: Python :: 3", # projects. See all possible classifiers
"License :: OSI Approved :: MIT License", # in https://pypi.org/classifiers/
"Operating System :: OS Independent",
),
)