Skip to content

Commit

Permalink
Merge pull request Avaiga#1284 from Avaiga/feature/Avaiga#507-separat…
Browse files Browse the repository at this point in the history
…e-package-long-desc-with-readme

Feature/Avaiga#507 separate package long desc with readme
  • Loading branch information
trgiangdo authored Jun 3, 2024
2 parents cff3262 + 404685d commit eb1a76c
Show file tree
Hide file tree
Showing 37 changed files with 760 additions and 1,447 deletions.
61 changes: 61 additions & 0 deletions package_desc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Taipy

## 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.

## ⭐️ What is Taipy

Taipy is an open-source Python library for easy, end-to-end application development for data
scientists and machine learning engineers, featuring what-if analyses, smart pipeline execution,
built-in scheduling, and deployment tools.

- Enables building production-ready web applications.
- No need to learn new languages or full-stack frameworks.
- Concentrate on Data and AI algorithms without development and deployment complexities.

- Website: https://www.taipy.io
- Documentation: https://docs.taipy.io/en/latest/
- Demos & Examples: https://docs.taipy.io/en/latest/gallery/
- Source code: https://github.com/Avaiga/taipy/
- Contributing: https://docs.taipy.io/en/latest/contributing/contributing/
- Bug reports: https://github.com/Avaiga/taipy/issues
- Discord support: https://discord.com/invite/SJyz2VJGxV

## ✨ Features

- **Python-Based UI Framework:** Taipy is designed for Python users, particularly those
in AI and data science. It allows them to create full-stack applications without
learning additional skills like HTML, CSS, or JavaScript.

- **Pre-Built Components for Data Pipelines:** Taipy includes pre-built components that
allow users to interact with data pipelines, including visualization and management
tools.

- **Scenario and Data Management Features:** Taipy offers features for managing different
business scenarios and data, which can be useful for applications like demand forecasting
or production planning.

- **Version Management and Pipeline Orchestration:** It includes tools for managing
application versions, pipeline versions, and data versions, which are beneficial
for multi-user environments.

## Installation

To install Taipy stable release run:
```bash
pip install taipy
```

To install Taipy on a Conda Environment or from source code, please refer to the
[Installation Guide](https://docs.taipy.io/en/latest/installation/).<br />
To get started with Taipy, please refer to the [Getting Started Guide](https://docs.taipy.io/en/latest/getting_started/).
23 changes: 19 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# 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.

"""The setup script."""
"""The setup script for taipy package"""

import os
import json
Expand All @@ -22,7 +22,7 @@

root_folder = Path(__file__).parent

readme = (root_folder / "README.md").read_text("UTF-8")
package_desc = Path("package_desc.md").read_text("UTF-8")

# get current version
with open(os.path.join("taipy", "version.json")) as version_file:
Expand Down Expand Up @@ -73,6 +73,7 @@ def run(self):
author_email="[email protected]",
python_requires=">=3.8",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
Expand All @@ -82,6 +83,12 @@ def run(self):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
description="A 360° open-source platform from Python pilots to production-ready web apps.",
install_requires=get_requirements(),
Expand All @@ -91,16 +98,24 @@ def run(self):
]
},
license="Apache License 2.0",
long_description=readme,
long_description=package_desc,
long_description_content_type="text/markdown",
keywords="taipy",
name="taipy",
packages=find_packages(include=["taipy", "taipy.*"]),
include_package_data=True,
test_suite="tests",
url="https://github.com/avaiga/taipy",
version=version_string,
zip_safe=False,
extras_require=extras_require,
cmdclass={"build_py": NPMInstall},
project_urls={
"Homepage": "https://www.taipy.io",
"Documentation": "https://docs.taipy.io",
"Source": "https://github.com/Avaiga/taipy",
"Download": "https://pypi.org/project/taipy/#files",
"Tracker": "https://github.com/Avaiga/taipy/issues",
"Security": "https://github.com/Avaiga/taipy?tab=security-ov-file#readme",
f"Release notes": "https://docs.taipy.io/en/release-{version_string}/relnotes/",
},
)
128 changes: 0 additions & 128 deletions taipy/config/CODE_OF_CONDUCT.md

This file was deleted.

135 changes: 0 additions & 135 deletions taipy/config/CONTRIBUTING.md

This file was deleted.

Loading

0 comments on commit eb1a76c

Please sign in to comment.