forked from biosimulators/bio-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 870 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "bio-compose-server"
version = "0.0.1"
readme ="README.md"
description = "Backend for BioCompose: a microservices-based data service leveraging Kubernetes for efficient orchestration of bio-chemical simulation comparisons."
authors = ["Alex Patrie <[email protected]>"]
packages = [
{include ="gateway"},
{include ="shared"},
{include ="worker"}
]
[tool.poetry.dependencies]
python = "^3.10"
uvicorn = "*"
google-cloud-storage = "*"
chardet = "*"
fastapi = "*"
python-multipart = "^0.0.20"
h5py = "*"
biosimulator-processes = "^0.3.7"
python-dotenv = "*"
python-libsbml = "*"
# copasi-basico = "*"
# smoldyn = "*"
# tellurium = "*"
# python-libnuml = "*"
# biosimulator-processes = {version = "0.3.2", extras=["ode","fba"]}
# pymem3dg = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"