-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
116 additions
and
4 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
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,57 @@ | ||
{ | ||
"cells": [ | ||
{ | ||
"cell_type": "markdown", | ||
"id": "6fe97655-002f-48a3-8732-1f05f7a50b05", | ||
"metadata": {}, | ||
"source": [ | ||
"# A Magic Furit \n", | ||
"\n", | ||
"Tell me somthing about lichi." | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"id": "2b015bf0-a303-4aaa-a8da-848f62970e3e", | ||
"metadata": {}, | ||
"source": [ | ||
"Lychee (Litchi chinensis), also spelled as lichi, is a tropical fruit native to southern China and is one of the oldest cultivated tree species in the world. Here are some interesting facts and information about lychees:\n", | ||
"\n", | ||
"1. **Appearance**: Lychees have a unique appearance with their red or pinkish-red rind that's rough-textured but thin and easily removable, revealing a translucent white fruit inside.\n", | ||
"\n", | ||
"2. **Taste**: The flesh of a lychee is sweet and juicy with a floral aroma similar to grapes combined with rosewater. It can be enjoyed fresh, canned in syrup, or used in various dishes like salads, cocktails, desserts, and even savory dishes.\n", | ||
"\n", | ||
"3. **Nutritional Value**: Lychees are rich in vitamin C, B vitamins, potassium, copper, zinc, and other minerals. They also contain antioxidants that may have health benefits.\n", | ||
"\n", | ||
"4. **Cultivation**: The tree can grow up to 10 meters tall and requires a tropical climate with high humidity. It is grown in various parts of Asia including China, India, Thailand, and Vietnam, as well as in Hawaii and some parts of the United States like Florida.\n", | ||
"\n", | ||
"5. **Health Benefits**: Some studies suggest that lychees may have anti-inflammatory properties due to their flavonoid content. However, they are also associated with a rare condition known as \"lychee disease\" where unripe or overconsumption can lead to hypoglycemia in children.\n", | ||
"\n", | ||
"6. **Cultural Significance**: In Chinese culture, lychees symbolize luck and prosperity due to the pronunciation of their name which sounds similar to words meaning “having enough.”\n", | ||
"\n", | ||
"Lychees are a delightful tropical fruit enjoyed for their unique taste and health benefits around the world." | ||
] | ||
} | ||
], | ||
"metadata": { | ||
"kernelspec": { | ||
"display_name": "Python 3 (ipykernel)", | ||
"language": "python", | ||
"name": "python3" | ||
}, | ||
"language_info": { | ||
"codemirror_mode": { | ||
"name": "ipython", | ||
"version": 3 | ||
}, | ||
"file_extension": ".py", | ||
"mimetype": "text/x-python", | ||
"name": "python", | ||
"nbconvert_exporter": "python", | ||
"pygments_lexer": "ipython3", | ||
"version": "3.12.5" | ||
} | ||
}, | ||
"nbformat": 4, | ||
"nbformat_minor": 5 | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,3 @@ | ||
[aliases] | ||
release = register sdist bdist_egg upload | ||
|
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 |
---|---|---|
@@ -1 +1,33 @@ | ||
__import__("setuptools").setup() | ||
# __import__("setuptools").setup() | ||
from setuptools import setup | ||
from pathlib import Path | ||
|
||
this_directory = Path(__file__).parent | ||
long_description = (this_directory / "README.md").read_text() | ||
|
||
setup(name="pyparsec", | ||
version="0.1.0", | ||
description="Litchi is a Jupyterlab extension for AI Client", | ||
long_description=long_description, | ||
long_description_content_type='text/markdown', | ||
author="marsliu", | ||
author_email="[email protected]", | ||
url="https://github.com/MarchLiu/litchi", | ||
license="MIT", | ||
packages=["litchi"], | ||
package_dir={ | ||
"ui": "src", | ||
"litchi": "litchi" | ||
}, | ||
keywords= ["jupyter", "jupyterlab", "jupyterlab-extension", "ai", "ollama"], | ||
classifiers=[ | ||
"Topic :: Utilities", | ||
"Programming Language :: Python :: 3.5", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"License :: OSI Approved :: MIT License" | ||
] | ||
) |
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