Metadata-Version: 2.1
Name: taipy-core
Version: 3.1.1
Summary: A Python library to build powerful and customized data-driven back-end applications.
Home-page: https://github.com/avaiga/taipy-core
Author: Avaiga
Author-email: dev@taipy.io
License: Apache License 2.0
Keywords: taipy-core
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3<=1.34.34,>=1.29.4
Requires-Dist: networkx<=3.2.1,>=2.6
Requires-Dist: openpyxl<=3.1.2,>=3.1.2
Requires-Dist: pandas<=2.2.0,>=1.3.5
Requires-Dist: pyarrow<=15.0.0,>=14.0.2
Requires-Dist: pymongo[srv]<=4.6.1,>=4.2.0
Requires-Dist: sqlalchemy<=2.0.25,>=2.0.16
Requires-Dist: taipy-config<3.2.0,>=3.1.1
Requires-Dist: toml<=0.10.2,>=0.10
Provides-Extra: fastparquet
Requires-Dist: fastparquet==2022.11.0; extra == "fastparquet"
Provides-Extra: mssql
Requires-Dist: pyodbc<4.1,>=4; extra == "mssql"
Provides-Extra: mysql
Requires-Dist: pymysql<1.1,>1; extra == "mysql"
Provides-Extra: postgresql
Requires-Dist: psycopg2<2.10,>2.9; extra == "postgresql"

# Taipy Core

## License

Copyright 2021-2024 Avaiga Private Limited

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
except in compliance with the License. You may obtain a copy of the License at
[http://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt)

Unless required by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language governing permissions
and limitations under the License.

## Usage

- [Taipy Core](#taipy-core)
- [License](#license)
- [Usage](#usage)
- [What is Taipy Core](#what-is-taipy-core)
- [Installation](#installation)
- [Contributing](#contributing)
- [Code of conduct](#code-of-conduct)
- [Directory Structure](#directory-structure)

## What is Taipy Core

Taipy is a Python library for creating Business Applications. More information on our
[website](https://www.taipy.io). Taipy is split into multiple repositories including
_taipy-core_ to let users install the minimum they need.

Taipy Core mostly includes business-oriented
features. It helps users create and manage business applications and improve analyses
capability through time, conditions and hypothesis.

A more in depth documentation of taipy can be found [here](https://docs.taipy.io).

## Installation

Want to install _Taipy Core_? Check out our [`INSTALLATION.md`](INSTALLATION.md) file.

## Contributing

Want to help build _Taipy Core_? Check out our [`CONTRIBUTING.md`](CONTRIBUTING.md) file.

## Code of conduct

Want to be part of the _Taipy Core_ community? Check out our
[`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md) file.

## Directory Structure

- `taipy/`:
  - `core/`:
    - `_backup/`: Internal package for Taipy data backup mechanism.
    - `_entity/`: Internal package for abstract entity definition and entity's properties management.
    - `_manager/`: Internal package for entity manager.
    - `_orchestrator/`: Internal package for task orchestrating and execution.
    - `_repository/`: Internal package for data storage.
    - `_version/`: Internal package for managing Taipy Core application version.
    - `common/`: Shared data structures, types, and functions.
    - `config/`: Configuration definition, management and implementation.
    - `cycle/`: Work cycle definition, management and implementation.
    - `data/`: Data Node definition, management and implementation.
    - `exceptions/`: _taipy-core_ exceptions.
    - `job/`: Job definition, management and implementation.
    - `notification/`: Notification management system implementation.
    - `scenario/`: Scenario definition, management and implementation.
    - `sequence/`: Sequence definition, management and implementation.
    - `submission/`: Submission definition, management and implementation.
    - `task/`: Task definition, management and implementation.
    - `taipy.py`: Main entrypoint for _taipy-core_ runtime features.
    - `CODE_OF_CONDUCT.md`: Code of conduct for members and contributors of _taipy-core_.
    - `CONTRIBUTING.md`: Instructions to contribute to _taipy-core_.
    - `INSTALLATION.md`: Instructions to install _taipy-core_.
    - `LICENSE`: The Apache 2.0 License.
    - `README.md`: Current file.
    - `setup.py`: The setup script managing building, distributing, and installing _taipy-core_.
- `tests/`:
  - `core/`: Unit tests following the `taipy/core/` structure.
