Metadata-Version: 2.1
Name: cesium
Version: 0.10.2
Summary: Library for time-series feature extraction and processing
Author: cesium team
Author-email: Stéfan van der Walt <stefanv@berkeley.edu>
License: BSD-3-Clause
Project-URL: homepage, http://cesium-ml.org
Project-URL: download, https://github.com/cesium-ml/cesium
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: C
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: numpy (>=1.14.3)
Requires-Dist: scipy (>=0.16.0)
Requires-Dist: scikit-learn (>=0.22.1)
Requires-Dist: pandas (>=0.17.0)
Requires-Dist: dask (>=2.5.0)
Requires-Dist: toolz
Requires-Dist: gatspy (>=0.3.0)
Requires-Dist: cloudpickle
Requires-Dist: joblib (>=0.14.1)

# `cesium`: Open-Source Platform for Time Series Inference

## Summary
`cesium` is an open source library that allows users to:
- extract features from raw time series data ([see list](http://cesium-ml.org/docs/feature_table.html)),
- build machine learning models from these features, and
- generate predictions for new data.

More information and [examples](http://cesium-ml.org/docs/auto_examples/index.html) can be found on our [home page](http://cesium-ml.org).

## Installation from binaries:
- Wheels for Mac and Linux can be installed via `pip install cesium`.
- We do not build binary wheels for Windows. To install on Windows, follow the instructions below for installation from source.

## Installation from source:
1. Install [Cython](http://cython.readthedocs.io/en/latest/src/quickstart/install.html)
2. Clone the repository: `git clone https://github.com/cesium-ml/cesium.git`
3. `cd cesium && pip install -e .`

Note that cesium requires a C99 compiler, which in particular excludes MSVC. On Windows, a different compiler like MinGW has to be used. Please refer to the [instructions for installing Cython & MinGW on Windows](https://cython.readthedocs.io/en/latest/src/tutorial/appendix.html#appendix-installing-mingw-on-windows).

## License:
`cesium` uses the [3-clause BSD licence](https://github.com/cesium-ml/cesium/blob/main/LICENSE.txt).
