Metadata-Version: 2.4
Name: featuresmith-cli
Version: 0.1.0
Summary: Command-line interface for the Featuresmith data quality engine.
Author: Featuresmith contributors
Maintainer: Featuresmith contributors
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/adityagangwani30/FeatureSmith
Project-URL: Documentation, https://featuresmith.adityagangwani.me
Project-URL: Repository, https://github.com/adityagangwani30/FeatureSmith
Project-URL: Issues, https://github.com/adityagangwani30/FeatureSmith/issues
Project-URL: Changelog, https://github.com/adityagangwani30/FeatureSmith/blob/main/CHANGELOG.md
Keywords: cli,data-quality,feature-engineering,profiling
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Typing :: Typed
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: featuresmith-core>=0.1.0
Requires-Dist: typer~=0.12
Requires-Dist: rich>=13.7
Dynamic: license-file

# featuresmith-cli

`featuresmith-cli` is the thin command-line interface for Featuresmith.

It exposes the `featuresmith` console command and delegates analysis work to
`featuresmith-core`.

Install featuresmith-core and featuresmith-cli directly from PyPI:

```bash
pip install featuresmith-core featuresmith-cli
```

Run an analysis:

```bash
featuresmith analyze customers.csv
featuresmith analyze customers.csv --target churn --format json
featuresmith --version
```

For comprehensive guides and API reference, visit the official website:
<https://featuresmith.adityagangwani.me>
