Metadata-Version: 2.1
Name: kingdom-core
Version: 0.2.0
Summary: Library containing the core modules for the kingdom-python-server
Home-page: https://github.com/t10d/kingdom-python-core
Author: William Abreu
Author-email: william@t10.digital
License: MIT License
Platform: any
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: sqlalchemy (==1.4.25) ; (python_version >= "2.7" and python_full_version < "3.0.0") or python_full_version >= "3.6.0"
Requires-Dist: greenlet (==1.1.2) ; python_version >= "3" and python_full_version < "3.0.0" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32") and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0") or python_version >= "3" and (platform_machine == "aarch64" or platform_machine == "ppc64le" or platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "AMD64" or platform_machine == "win32" or platform_machine == "WIN32") and (python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.6.0") and python_full_version >= "3.5.0"

# 🏰 Kingdom Core

Library containing the core modules for the kingdom-python-server.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install `kingdom-core`.

```bash
pip install kingdom-core
```

You can use [poetry]() as well.

```bash
poetry add kingdom-core
```

## Usage

```python
from kingdom_core.utils import files

orm_files = files.find("orm.py", "/")
```

## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License
[MIT](https://choosealicense.com/licenses/mit/)

> This file is based on [Make a README](https://www.makeareadme.com/).


