Skip to content

Commit 3c05406

Browse files
committed
publish
1 parent f9ada87 commit 3c05406

4 files changed

Lines changed: 29 additions & 6 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) iLoveIMG
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

iloveimg/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
"""iloveimg package initialization."""
22

3+
__version__ = "1.0.0"
4+
35
from . import exceptions
46
from .compress_task import CompressTask
57
from .convert_task import ConvertTask

iloveimg/iloveimg_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
API_VERSION = "v1"
4343
START_SERVER_URL = os.environ.get("START_SERVER_URL", "https://api.ilovepdf.com")
4444
API_HOST = os.environ.get("API_HOST", "api.ilovepdf.com")
45-
LIBRARY_VERSION = "python.0.0.1"
45+
LIBRARY_VERSION = "python.1.0.0"
4646

4747
# HTTP Status Codes
4848
HTTP_OK = 200

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[project]
22
name = "iloveimg"
33
description = "iLoveIMG Python API"
4-
version = "0.0.1"
4+
version = "1.0.0"
55
authors = [{ name = "ilovepdf", email = "info@ilovepdf.com" }]
6-
license = { file = "LICENSE" }
6+
license = "MIT"
7+
license-files = ["LICENSE"]
78
readme = "README.md"
89

910
requires-python = ">=3.9,<=3.12.12"
10-
dependencies = ["requests>=2.28.0", "pyjwt>=2.4.0"]
11+
dependencies = ["requests>=2.28.0", "pyjwt>=2.4.0", "python-dotenv>=1.0.0"]
1112

1213
classifiers = [
13-
"Development Status :: 3 - Alpha",
14+
"Development Status :: 5 - Production/Stable",
1415
"Intended Audience :: Developers",
15-
"License :: OSI Approved :: MIT License",
1616
"Programming Language :: Python :: 3",
1717
"Programming Language :: Python :: 3.9",
1818
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)