mirror of
https://github.com/RYDE-WORK/lnp_ml.git
synced 2026-09-18 14:23:20 +08:00
28 lines
625 B
TOML
28 lines
625 B
TOML
[build-system]
|
|
requires = ["flit_core >=3.2,<4"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[project]
|
|
name = "lnp_ml"
|
|
version = "0.0.1"
|
|
description = "Reusable neural network components for molecular and formulation modeling."
|
|
license = { file = "LICENSE" }
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License"
|
|
]
|
|
requires-python = ">=3.8"
|
|
|
|
[tool.ruff]
|
|
line-length = 99
|
|
src = ["lnp_ml"]
|
|
include = ["pyproject.toml", "lnp_ml/**/*.py"]
|
|
|
|
[tool.ruff.lint]
|
|
extend-select = ["I"]
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["lnp_ml"]
|
|
force-sort-within-sections = true
|