-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
34 lines (33 loc) · 981 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
31
32
33
34
from setuptools import setup
setup(
name='edbo',
packages=['edbo'],
version='0.1.0',
author='Benjamin J. Shields',
author_email='[email protected]',
url='https://github.com/b-shields/edbo',
download_url = 'https://github.com/b-shields/edbo/archive/edbo.tar.gz',
keywords=['Bayesian Optimization', 'Chemical Reaction Optimization'],
license='MIT',
description='Experimental design via Bayesian optimization',
install_requires=[
'pandas',
'numpy',
'xlrd',
'scikit-learn>=0.22.1',
'matplotlib',
'seaborn',
'dill',
'gpytorch==1.0.0',
'pyclustering==0.9.3.1',
'pyro-ppl==1.1',
'ipython', ###
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
],
)