-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (29 loc) · 902 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="petboa",
version="0.1.1",
description="Parameter Estimation using Bayesian Optimization",
author="Sashank Kasiraju; Vlachos Group",
author_email="[email protected]",
url="https://github.com/VlachosGroup/petboa",
project_urls={
"Documentation": "https://github.com/VlachosGroup/petboa",
"Source": "https://github.com/VlachosGroup/petboa",
},
packages=find_packages(),
python_requires=">=3.7,<=3.11",
install_requires=[
"gpytorch<=1.8.1",
"botorch<=0.6.6",
"nextorch>=0.1.0",
"pmutt",
"docker",
"SALib"
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
],
)