File size: 934 Bytes
b233cf7 06b7dd3 b233cf7 cfa3391 7db8e51 cfa3391 f8d6fe6 01881d4 0884300 eaf6535 2671b56 eaf6535 aa64aba b233cf7 | 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 | [build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pino"
version = "0.1.0"
description = "Physics-Informed Neural Olfaction (PINO) — thermodynamic fragrance evaporation verifier"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"rdkit>=2024.0",
"scipy>=1.12",
"thermo>=0.6",
"ugropy>=3.2",
"pydantic>=2.0",
"cma>=4.0",
"transformers>=4.41.0,<4.50.0",
"huggingface-hub>=0.24",
"datasets>=2.20",
"tensorboard>=2.15",
"matplotlib>=3.8",
"umap-learn>=0.5",
"requests>=2.31",
"beautifulsoup4>=4.12",
"pypdf>=4.0",
"openai>=1.0",
"camoufox>=0.4.11",
]
[project.optional-dependencies]
dev = ["pytest>=8.0"]
[project.scripts]
pino = "pino.__main__:main"
pino-critic = "pino.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/pino"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
|