File tree Expand file tree Collapse file tree 6 files changed +11
-9
lines changed Expand file tree Collapse file tree 6 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ The Plane REST API
44Visit our quick start guide and full API documentation at [ developers.plane.so] ( https://developers.plane.so/api-reference/introduction ) .
55
66- API version: 0.0.1
7- - Package version: 0.1.7
7+ - Package version: 0.1.8
88- Generator version: 7.13.0
99- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010For more information, please visit [ https://plane.so ] ( https://plane.so )
Original file line number Diff line number Diff line change 1515""" # noqa: E501
1616
1717
18- __version__ = "0.1.7 "
18+ __version__ = "0.1.8 "
1919
2020# import apis into sdk package
2121from plane .api .assets_api import AssetsApi
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def __init__(
8686 self .default_headers [header_name ] = header_value
8787 self .cookie = cookie
8888 # Set default User-Agent.
89- self .user_agent = 'OpenAPI-Generator/0.1.7 /python'
89+ self .user_agent = 'OpenAPI-Generator/0.1.8 /python'
9090 self .client_side_validation = configuration .client_side_validation
9191
9292 def __enter__ (self ):
Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ def to_debug_report(self) -> str:
548548 "OS: {env}\n " \
549549 "Python Version: {pyversion}\n " \
550550 "Version of the API: 0.0.1\n " \
551- "SDK Package Version: 0.1.7 " .\
551+ "SDK Package Version: 0.1.8 " .\
552552 format (env = sys .platform , pyversion = sys .version )
553553
554554 def get_host_settings (self ) -> List [HostSetting ]:
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " plane"
3- version = " 0.1.7 "
3+ version = " 0.1.8 "
44description = " The Plane REST API"
55authors = [
" Plane <[email protected] >" ]
66license = " GNU AGPLv3"
Original file line number Diff line number Diff line change 2222# prerequisite: setuptools
2323# http://pypi.python.org/pypi/setuptools
2424NAME = "plane-sdk"
25- VERSION = "0.1.7 "
25+ VERSION = "0.1.8 "
2626PYTHON_REQUIRES = ">= 3.9"
2727REQUIRES = [
2828 "urllib3 >= 2.1.0, < 3.0.0" ,
3131 "typing-extensions >= 4.7.1" ,
3232]
3333
34+ # Read README.md for long description
35+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
36+ long_description = fh .read ()
37+
3438setup (
3539 name = NAME ,
3640 version = VERSION ,
4448 include_package_data = True ,
4549 license = "GNU AGPLv3" ,
4650 long_description_content_type = 'text/markdown' ,
47- long_description = """\
48- The Plane REST API Visit our quick start guide and full API documentation at [developers.plane.so](https://developers.plane.so/api-reference/introduction).
49- """ , # noqa: E501
51+ long_description = long_description ,
5052 package_data = {"plane" : ["py.typed" ]},
5153)
You can’t perform that action at this time.
0 commit comments