Skip to content

Commit

Permalink
Bump verson (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosfelt authored Dec 2, 2022
1 parent 0d0e6d9 commit f49f6a6
Showing 1 changed file with 44 additions and 19 deletions.
63 changes: 44 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,22 +1,34 @@
[tool.poetry]
name = "summit"
version = "0.8.7"
version = "0.8.8"
description = "Tools for optimizing chemical processes"
authors = ["Kobi Felton <kobi.c.f@gmail.com>", "Jan Rittig"]
license = "MIT"
readme = 'README.md'
repository = "https://github.com/sustainable-processes/summit"
homepage = "https://github.com/sustainable-processes/summit"
keywords = ["machine-learning", "chemistry", "bayesian-reaction-optimization", "reaction-optimization", "neural-networks", "process optimization", "bayesian-optimization", "nelder-mead", "snobfit", "gryffin", "TSEMO"]
keywords = [
"machine-learning",
"chemistry",
"bayesian-reaction-optimization",
"reaction-optimization",
"neural-networks",
"process optimization",
"bayesian-optimization",
"nelder-mead",
"snobfit",
"gryffin",
"TSEMO",
]

[tool.poetry.dependencies]
# Core dependencies
python = "^3.8, <3.11"
pandas = "^1.1.0"
scipy = ">=1.8.0"
numpy = "^1.21.0"
llvmlite="^0.38.0"
numba="^0.55.0"
llvmlite = "^0.38.0"
numba = "^0.55.0"
fastprogress = "^0.2.3"
matplotlib = "^3.2.2"
scikit-learn = "^1.0"
Expand All @@ -41,29 +53,42 @@ gpytorch = "^1.5.0"
pytest = "^6.2.5"

# Optional dependencies
xlrd = {version="^1.2.0", optional=true}
streamlit = {version=">=0.67.1,<1.12.0", optional=true}
neptune-client = {version= "^0.4.115", optional = true}
hiplot = {version= "^0.1.12", optional = true}
paramiko = {version="^2.7.1", optional=true}
sphinx = {version="^3.2.1", optional=true}
jinja2 = {version="<3.1.0", optional=true}
nbsphinx = {version="^0.8.5", optional=true}
sphinx-rtd-theme = {version="^0.5.0", optional=true}
pyrecorder = {version="^0.1.8", optional=true}
entmoot = {version="^0.1.4", optional=true}
sphinx-reredirects = {version="^0.0.0", optional=true}
xlrd = { version = "^1.2.0", optional = true }
streamlit = { version = ">=0.67.1,<1.12.0", optional = true }
neptune-client = { version = "^0.4.115", optional = true }
hiplot = { version = "^0.1.12", optional = true }
paramiko = { version = "^2.7.1", optional = true }
sphinx = { version = "^3.2.1", optional = true }
jinja2 = { version = "<3.1.0", optional = true }
nbsphinx = { version = "^0.8.5", optional = true }
sphinx-rtd-theme = { version = "^0.5.0", optional = true }
pyrecorder = { version = "^0.1.8", optional = true }
entmoot = { version = "^0.1.4", optional = true }
sphinx-reredirects = { version = "^0.0.0", optional = true }

[tool.poetry.extras]
bnn = ["blitz-bayesian-pytorch"]
entmoot = ["entmoot"]
experiments = ["neptune-client", "hiplot", "paramiko", "pyrecorder", "xlrd", "streamlit"]
docs = ["sphinx", "jinja2", "nbsphinx", "sphinx-rtd-theme", "sphinx-reredirects"]
experiments = [
"neptune-client",
"hiplot",
"paramiko",
"pyrecorder",
"xlrd",
"streamlit",
]
docs = [
"sphinx",
"jinja2",
"nbsphinx",
"sphinx-rtd-theme",
"sphinx-reredirects",
]

[tool.poetry.dev-dependencies]
ipdb = "0.13.4"
rope = "^0.17.0"
black = {version = "^20.8b1", allow-prereleases = true}
black = { version = "^20.8b1", allow-prereleases = true }

[tool.poetry.scripts]
summit-tests = 'summit:run_tests'
Expand Down

0 comments on commit f49f6a6

Please sign in to comment.