File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 22
33All 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:
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ The FastPix Python SDK simplifies integration with the FastPix platform. This SD
1919For 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
Original file line number Diff line number Diff line change 11from setuptools import setup , find_packages
2-
2+
3+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
4+ long_description = fh .read ()
5+
36setup (
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" ,
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" ,
17221823 url = "https://github.com/fastpix-io/fastpix-python-server-sdk" ,
2631 "Programming Language :: Python :: 3.9" ,
2732 ],
2833 python_requires = ">=3.7" ,
29- )
34+ )
You can’t perform that action at this time.
0 commit comments