-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…ng-desc-with-readme Feature/#507 separate package long desc with readme
- Loading branch information
Showing
37 changed files
with
760 additions
and
1,447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|
@@ -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", | ||
|
@@ -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(), | ||
|
@@ -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/", | ||
}, | ||
) |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.