-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (45 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
51 lines (45 loc) · 1.08 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
50
51
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "tri-channel-oect-mc"
version = "0.3.0"
description = "Tri-channel OECT molecular communication simulator (MoSK/CSK/Hybrid) with crash-safe resume, parallel execution, real-time logging, IEEE-quality plotting, and benchmarking"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Your Name", email = "you@example.com" }
]
dependencies = [
"numpy>=2.3.4",
"scipy>=1.16.2",
"pandas>=2.3.3",
"matplotlib>=3.10.7",
"seaborn>=0.13.2",
"PyYAML>=6.0.3",
"tqdm>=4.67.1",
"rich>=14.2.0",
"psutil>=7.1.1",
"joblib>=1.5.2",
"statsmodels>=0.14.5",
"cycler>=0.12.1",
]
[project.optional-dependencies]
analysis = [
"pyarrow>=21.0.0",
]
dev = [
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"black>=25.9.0",
"ruff>=0.14.2",
"mypy>=1.18.2",
"pip-tools>=7.5.1",
"jupyter>=1.1.1",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[project.scripts]
mcvd-simulate = "analysis.run_final_analysis:main"
mcvd-master = "analysis.run_master:main"