Skip to content

Commit df10d60

Browse files
committed
add-long-description
1 parent 9809735 commit df10d60

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.1.1]
6+
7+
- Long description is added.
8+
59
## [0.1.0]
610

711
### Features:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The FastPix Python SDK simplifies integration with the FastPix platform. This SD
1919
For detailed usage, refer to the [FastPix API Reference](https://docs.fastpix.io/reference).
2020

2121
## Latest Release
22-
- Current Version: 0.1.0
22+
- Current Version: 0.1.1
2323
- View our [changelog](CHANELOG.md) for details on recent updates
2424
- Download the latest release from our [releases page](https://github.com/FastPix/python-server-sdk/releases/tag/v1.0.0)
2525

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
from setuptools import setup, find_packages
2-
2+
3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name="fastpix-python",
5-
version="0.1.0",
8+
version="0.1.1",
69
packages=find_packages(),
710
install_requires=[
811
"requests>=2.25.0",
@@ -13,6 +16,8 @@
1316
]
1417
},
1518
description="FastPix SDK with both sync and async support",
19+
long_description=long_description,
20+
long_description_content_type="text/markdown",
1621
author="FastPix",
1722
author_email="[email protected]",
1823
url="https://github.com/fastpix-io/fastpix-python-server-sdk",
@@ -26,4 +31,4 @@
2631
"Programming Language :: Python :: 3.9",
2732
],
2833
python_requires=">=3.7",
29-
)
34+
)

0 commit comments

Comments
 (0)