-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (39 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
49 lines (39 loc) · 1.01 KB
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
47
48
49
[project]
name = "microgrowlink-service"
version = "0.1.0"
description = "Gradio web application for predicting microbial growth media using KOGUT model"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
authors = [
{name = "KG-Microbe Team"}
]
dependencies = [
# Web Interface
"gradio>=4.0.0",
# Data Processing
"pandas>=2.2.3",
# Database for querying knowledge graph
"duckdb>=0.10.0",
# Machine Learning (KOGUT model)
"torch>=2.0.0",
"numpy>=1.24.0",
# Statistical Analysis (for information content assessment)
"scipy>=1.10.0",
]
[project.urls]
Homepage = "https://github.com/realmarcin/MicroGrowLinkService"
Repository = "https://github.com/realmarcin/MicroGrowLinkService"
[project.scripts]
microgrowlink-service = "app:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"black>=23.0.0",
"ruff>=0.1.0",
]