Metadata-Version: 2.3
Name: mt-system
Version: 2.0.3
Summary: Python library of MT system.
Project-URL: Homepage, https://github.com/stfukuda/mt-system.git
Project-URL: Documentation, https://stfukuda.github.io/mt-system/
Project-URL: Source, https://github.com/stfukuda/mt-system.git
Project-URL: Issues, https://github.com/stfukuda/mt-system/issues
Author-email: Shota Fukuda <st_fukuda@outlook.jp>
License: 
        Copyright (c) 2022-2024 Shota Fukuda <st_fukuda@outlook.jp>.
        
        Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
        
        1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
        2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
        3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development
Requires-Python: >=3.9
Requires-Dist: scikit-learn>=1.4.0
Description-Content-Type: text/markdown

# MT-system

Python library of MT system.

## Dependencies

This library requires:

- Python (>=3.9)
- scikit-learn (>=1.4.0)

## Installation

It can be installed as follows using pip:

```shell
pip install -U mt-system
```

## Usage

Describe how to use the library in this part.

## Development

Development requires:

- [uv (For Python package and project manager)](https://github.com/astral-sh/uv)
  - Python (>=3.9)
- [Git](https://git-scm.com/)

### Source code

You can check the latest sources with the command:

```shell
git clone https://github.com/stfukuda/mt-system.git
```

### Enviroment

After cloning the repository, you can install the development environment with the command:

```shell
make setup
```

### Testing

After installation, you can run the test with the command:

```shell
make test
```

### Submitting a Pull Request

If the test passes, send the pull request according to the format.
