Metadata-Version: 2.1
Name: synergos
Version: 0.0.1
Summary: Package of ML useful tools
Home-page: https://github.com/PeterPirog/synergos
Author: Peter Pirog
Author-email: peterpirogtf@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE

# synergos
set of tools to improve ML tasks in sklearn and tensorflow

## Installation

Run the following to install:
```bash
$ pip install synergos
```

## Usage

```python
from synergos.functions.hello import say_hello

# Generate "Hello World!
say_hello()

# Generate "Hello Everybody"
say_hello("Everybody")
```
#Developing Hello World
To install helloworld, along the tools you need to develop and run tests, run the following in your virtualenv:
```bash
$ pip install -e .[dev]
```


