完成初版
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
[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
|
||||
Reference in New Issue
Block a user