2025-11-15 07:56:35 -05:00
|
|
|
[project]
|
2025-11-15 08:05:19 -05:00
|
|
|
name = "atomizer"
|
2025-11-15 07:56:35 -05:00
|
|
|
version = "0.1.0"
|
2025-11-15 08:05:19 -05:00
|
|
|
description = "Advanced optimization platform for Siemens NX Simcenter with LLM integration"
|
2025-11-15 07:56:35 -05:00
|
|
|
authors = [
|
|
|
|
|
{name = "Atomaste", email = "contact@atomaste.com"}
|
|
|
|
|
]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.10"
|
|
|
|
|
license = {text = "Proprietary"}
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
|
"optuna>=3.5.0",
|
|
|
|
|
"pandas>=2.0.0",
|
|
|
|
|
"numpy>=1.24.0",
|
|
|
|
|
"scipy>=1.10.0",
|
|
|
|
|
"scikit-learn>=1.3.0",
|
|
|
|
|
"pyNastran>=1.4.0",
|
|
|
|
|
"plotly>=5.18.0",
|
|
|
|
|
"fastapi>=0.109.0",
|
|
|
|
|
"uvicorn>=0.27.0",
|
|
|
|
|
"websockets>=12.0",
|
|
|
|
|
"pydantic>=2.5.0",
|
|
|
|
|
"python-multipart>=0.0.6",
|
|
|
|
|
"jinja2>=3.1.3",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=7.4.0",
|
|
|
|
|
"pytest-cov>=4.1.0",
|
|
|
|
|
"black>=23.12.0",
|
|
|
|
|
"ruff>=0.1.0",
|
|
|
|
|
"mypy>=1.8.0",
|
|
|
|
|
"pre-commit>=3.6.0",
|
|
|
|
|
]
|
|
|
|
|
|
2026-01-07 09:02:36 -05:00
|
|
|
neural = [
|
|
|
|
|
"torch>=2.0.0",
|
|
|
|
|
"torch-geometric>=2.3.0",
|
|
|
|
|
"tensorboard>=2.13.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
gnn = [
|
|
|
|
|
"torch>=2.0.0",
|
|
|
|
|
"torch-geometric>=2.3.0",
|
2025-11-15 07:56:35 -05:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
dashboard = [
|
|
|
|
|
"dash>=2.14.0",
|
|
|
|
|
"dash-bootstrap-components>=1.5.0",
|
|
|
|
|
]
|
|
|
|
|
|
2026-01-07 09:02:36 -05:00
|
|
|
all = [
|
|
|
|
|
"atomizer[neural,gnn,dev,dashboard]",
|
|
|
|
|
]
|
|
|
|
|
|
2025-11-15 07:56:35 -05:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["."]
|
2026-01-07 09:02:36 -05:00
|
|
|
include = ["optimization_engine*", "nx_journals*"]
|
2025-11-15 07:56:35 -05:00
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
|
line-length = 100
|
|
|
|
|
target-version = ['py310']
|
|
|
|
|
include = '\.pyi?$'
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
|
|
|
|
select = ["E", "F", "I", "N", "W"]
|
|
|
|
|
ignore = ["E501"]
|
|
|
|
|
|
|
|
|
|
[tool.mypy]
|
|
|
|
|
python_version = "3.10"
|
|
|
|
|
warn_return_any = true
|
|
|
|
|
warn_unused_configs = true
|
|
|
|
|
disallow_untyped_defs = false
|
|
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
python_files = ["test_*.py"]
|
|
|
|
|
python_classes = ["Test*"]
|
|
|
|
|
python_functions = ["test_*"]
|
2026-01-07 09:02:36 -05:00
|
|
|
addopts = "-v --cov=optimization_engine --cov-report=html --cov-report=term"
|