Metadata-Version: 2.1
Name: gator-core
Version: 1.1.4
Summary: A dataset aggregation framework for Sqrl Planner.
License: MIT
Author: Shon Verch
Author-email: verchshon@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: bs4 (>=0.0.1,<0.0.2)
Requires-Dist: marshmallow (>=3.17.0,<4.0.0)
Requires-Dist: marshmallow-enum (>=1.5.1,<2.0.0)
Requires-Dist: mongoengine (>=0.20)
Requires-Dist: requests (>=2.28.2,<3.0.0)
Requires-Dist: routes (>=2.5.1,<3.0.0)
Description-Content-Type: text/markdown

# gator-core
 A dataset aggregation framework for Sqrl Planner.

## Tools

#### Linting the codebase
For detecting code quality and style issues, run
```
flake8
```
For checking compliance with Python docstring conventions, run
```
pydocstyle
```

**NOTE**: these tools will not fix any issues, but they can help you identify potential problems.


#### Formatting the codebase
For automatically formatting the codebase, run
```
autopep8 --in-place --recursive .
```
For more information on this command, see the [autopep8](https://pypi.python.org/pypi/autopep8) documentation.

For automatically sorting imports, run
```
isort .
```

