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
4
4
Visit our quick start guide and full API documentation at [ developers.plane.so] ( https://developers.plane.so/api-reference/introduction ) .
5
5
6
6
- API version: 0.0.1
7
- - Package version: 0.1.7
7
+ - Package version: 0.1.8
8
8
- Generator version: 7.13.0
9
9
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
10
For more information, please visit [ https://plane.so ] ( https://plane.so )
Original file line number Diff line number Diff line change 15
15
""" # noqa: E501
16
16
17
17
18
- __version__ = "0.1.7 "
18
+ __version__ = "0.1.8 "
19
19
20
20
# import apis into sdk package
21
21
from plane .api .assets_api import AssetsApi
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ def __init__(
86
86
self .default_headers [header_name ] = header_value
87
87
self .cookie = cookie
88
88
# Set default User-Agent.
89
- self .user_agent = 'OpenAPI-Generator/0.1.7 /python'
89
+ self .user_agent = 'OpenAPI-Generator/0.1.8 /python'
90
90
self .client_side_validation = configuration .client_side_validation
91
91
92
92
def __enter__ (self ):
Original file line number Diff line number Diff line change @@ -548,7 +548,7 @@ def to_debug_report(self) -> str:
548
548
"OS: {env}\n " \
549
549
"Python Version: {pyversion}\n " \
550
550
"Version of the API: 0.0.1\n " \
551
- "SDK Package Version: 0.1.7 " .\
551
+ "SDK Package Version: 0.1.8 " .\
552
552
format (env = sys .platform , pyversion = sys .version )
553
553
554
554
def get_host_settings (self ) -> List [HostSetting ]:
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " plane"
3
- version = " 0.1.7 "
3
+ version = " 0.1.8 "
4
4
description = " The Plane REST API"
5
5
authors = [
" Plane <[email protected] >" ]
6
6
license = " GNU AGPLv3"
Original file line number Diff line number Diff line change 22
22
# prerequisite: setuptools
23
23
# http://pypi.python.org/pypi/setuptools
24
24
NAME = "plane-sdk"
25
- VERSION = "0.1.7 "
25
+ VERSION = "0.1.8 "
26
26
PYTHON_REQUIRES = ">= 3.9"
27
27
REQUIRES = [
28
28
"urllib3 >= 2.1.0, < 3.0.0" ,
31
31
"typing-extensions >= 4.7.1" ,
32
32
]
33
33
34
+ # Read README.md for long description
35
+ with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
36
+ long_description = fh .read ()
37
+
34
38
setup (
35
39
name = NAME ,
36
40
version = VERSION ,
44
48
include_package_data = True ,
45
49
license = "GNU AGPLv3" ,
46
50
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 ,
50
52
package_data = {"plane" : ["py.typed" ]},
51
53
)
You can’t perform that action at this time.
0 commit comments