Skip to content

Commit ab8820c

Browse files
committed
up config
1 parent 8feed1c commit ab8820c

File tree

2 files changed

+11
-28
lines changed

2 files changed

+11
-28
lines changed

Diff for: pyproject.toml

+9-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "invokeai-python"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "InvokeAI API package"
99
readme = "README.md"
1010
license = { text = "MIT" }
@@ -13,9 +13,14 @@ authors = [
1313
]
1414
requires-python = ">=3.6"
1515
dependencies = [
16-
"aiohttp==3.11.11",
17-
"pydantic==2.10.5",
16+
"aiohttp>=3.0.0",
17+
"pydantic>=2.0.0",
18+
]
19+
classifiers = [
20+
"Programming Language :: Python :: 3",
21+
"License :: OSI Approved :: MIT License",
22+
"Operating System :: OS Independent",
1823
]
1924

2025
[project.urls]
21-
Home = "https://github.com/veydlin/invokeai-python"
26+
Home = "https://github.com/veydlin/invokeai-python"

Diff for: setup.py

+2-24
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,3 @@
1-
# Path: setup.py
2-
from setuptools import setup, find_packages
1+
from setuptools import setup
32

4-
setup(
5-
name="invokeai-python",
6-
version="0.2.1",
7-
description="InvokeAI API package",
8-
long_description=open("README.md").read(),
9-
long_description_content_type="text/markdown",
10-
author="Kyle Nekto",
11-
author_email="[email protected]",
12-
url="https://github.com/veydlin/invokeai-python",
13-
license="MIT",
14-
packages=find_packages(),
15-
install_requires=[
16-
"aiohttp==3.11.11",
17-
"pydantic==2.10.5",
18-
],
19-
classifiers=[
20-
"Programming Language :: Python :: 3",
21-
"License :: OSI Approved :: MIT License",
22-
"Operating System :: OS Independent",
23-
],
24-
python_requires=">=3.6",
25-
)
3+
setup()

0 commit comments

Comments
 (0)