30 lines
604 B
TOML
30 lines
604 B
TOML
[project]
|
|
name = "mil_sdk"
|
|
version = "0.1.0"
|
|
description = "MIL SDK for reading simulation data from Excel files"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"openpyxl>=3.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"mypy>=1.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|
|
python_files = ["test_*.py"]
|
|
python_classes = ["Test*"]
|
|
python_functions = ["test_*"]
|
|
|
|
[tool.mypy]
|
|
python_version = "3.10"
|
|
warn_return_any = true
|
|
warn_unused_configs = true
|
|
disallow_untyped_defs = true |