[build-system] requires = ["setuptools>=45", "wheel"] build-backend = "setuptools.build_meta" [project] name = "stanno" version = "0.1.0" description = "Self-Training Artificial Neural Network Object — biologically-inspired direct-weight-modification neural architecture" readme = "README.md" requires-python = ">=3.9" license = {text = "MIT"} keywords = ["neural-network", "stanno", "thaler", "meta-learning"] dependencies = [ "numpy>=1.24", ] [project.optional-dependencies] data = ["pandas>=2.0"] llm = ["httpx>=0.27"] torch = ["torch>=2.0"] all = ["stanno[data,llm,torch]"] [project.scripts] stanno = "stanno.cli:main" [tool.setuptools.packages.find] where = ["."] include = ["stanno*"] [tool.setuptools.package-data] stanno = ["py.typed"]