/ pyproject.toml
pyproject.toml
1 [build-system] 2 requires = ["setuptools>=77.0.0", "wheel"] 3 build-backend = "setuptools.build_meta" 4 5 [project] 6 name = "pyod" 7 dynamic = ["version", "dependencies"] 8 description = "A Python library for anomaly detection across tabular, time series, graph, text, and image data. 60+ detectors, benchmark-backed ADEngine orchestration, and an agentic workflow for AI agents." 9 readme = "README.rst" 10 requires-python = ">=3.9" 11 license = "BSD-2-Clause" 12 authors = [ 13 {name = "Yue Zhao", email = "yzhao062@gmail.com"}, 14 ] 15 keywords = [ 16 "anomaly detection", 17 "outlier detection", 18 "machine learning", 19 "deep learning", 20 "unsupervised learning", 21 "time series anomaly detection", 22 "graph anomaly detection", 23 "nlp anomaly detection", 24 "image anomaly detection", 25 "multimodal", 26 "agentic ai", 27 "foundation models", 28 "fraud detection", 29 "novelty detection", 30 "out-of-distribution detection", 31 "outlier ensembles", 32 "pytorch", 33 "python", 34 ] 35 classifiers = [ 36 "Development Status :: 5 - Production/Stable", 37 "Intended Audience :: Education", 38 "Intended Audience :: Financial and Insurance Industry", 39 "Intended Audience :: Science/Research", 40 "Intended Audience :: Developers", 41 "Intended Audience :: Information Technology", 42 "Programming Language :: Python :: 3.9", 43 "Programming Language :: Python :: 3.10", 44 "Programming Language :: Python :: 3.11", 45 "Programming Language :: Python :: 3.12", 46 "Programming Language :: Python :: 3.13", 47 ] 48 49 [project.optional-dependencies] 50 torch = ["torch>=2.0"] 51 suod = ["suod"] 52 xgboost = ["xgboost"] 53 combo = ["combo"] 54 pythresh = ["pythresh"] 55 embedding = ["sentence-transformers>=5.0.0"] 56 openai = ["openai>=1.0"] 57 huggingface = ["transformers>=4.25.1", "torch>=2.0", "Pillow"] 58 graph = ["torch>=2.0", "torch_geometric>=2.0"] 59 mcp = ["mcp>=1.0"] 60 all = [ 61 "torch>=2.0", 62 "suod", 63 "xgboost", 64 "combo", 65 "pythresh", 66 "sentence-transformers>=5.0.0", 67 "openai>=1.0", 68 "transformers>=4.25.1", 69 "torch_geometric>=2.0", 70 "Pillow", 71 "mcp>=1.0", 72 ] 73 74 [project.urls] 75 Homepage = "https://github.com/yzhao062/pyod" 76 Documentation = "https://pyod.readthedocs.io" 77 Repository = "https://github.com/yzhao062/pyod" 78 Issues = "https://github.com/yzhao062/pyod/issues" 79 Changelog = "https://github.com/yzhao062/pyod/blob/development/CHANGES.txt" 80 81 [project.scripts] 82 pyod = "pyod.cli:main" 83 pyod-install-skill = "pyod.skills:install_cli" 84 85 [tool.setuptools] 86 include-package-data = true 87 88 [tool.setuptools.dynamic] 89 version = {attr = "pyod.version.__version__"} 90 dependencies = {file = ["requirements.txt"]} 91 92 [tool.setuptools.packages.find] 93 include = ["pyod*"] 94 namespaces = false 95 exclude = ["test", "test.*", "pyod.test", "pyod.test.*"] 96 97 [tool.setuptools.package-data] 98 "pyod.utils.model_analysis_jsons" = ["*.json"] 99 "pyod.utils.knowledge" = ["*.json"] 100 "pyod.skills.od_expert" = ["*.md", "references/*.md"]