-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.original
46 lines (41 loc) · 1.02 KB
/
pyproject.original
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
36
37
38
39
40
41
42
43
44
45
46
[project]
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 = [{name = "Alex Patrie", email = "[email protected]"}]
# only app-level deps
dependencies = [
"requests-toolbelt",
"python-dotenv",
"google-cloud-storage",
"python-multipart",
"fastapi",
"toml",
"typing-extensions",
"pymongo",
"pydantic-settings",
"pydantic",
"uvicorn",
"pyyaml",
"chardet",
"simulariumio",
"numpy",
"pandas",
"process-bigraph==0.0.22",
"bigraph-schema",
"copasi-basico",
"tellurium",
"python-libsbml",
"smoldyn",
"pip-autoremove",
"networkx",
"qiskit",
"qiskit-ibm-runtime",
"mypy"
]
[tool.setuptools]
packages = ["bio_bundles", "gateway", "shared", "tests", "worker"]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"